Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Update dialog.json
Commit Description:
Update dialog.json
using System ;
using System.Numerics ;
using System.Runtime.CompilerServices ;
using System.Text ;
namespace ImGuiNET
{
public unsafe partial struct StbTexteditRow
{
public float x0 ;
public float x1 ;
public float baseline_y_delta ;
public float ymin ;
public float ymax ;
public int num_chars ;
}
public unsafe partial struct StbTexteditRowPtr
{
public StbTexteditRow * NativePtr { get ; }
public StbTexteditRowPtr ( StbTexteditRow * nativePtr ) => NativePtr = nativePtr ;
public StbTexteditRowPtr ( IntPtr nativePtr ) => NativePtr = ( StbTexteditRow *) nativePtr ;
public static implicit operator StbTexteditRowPtr ( StbTexteditRow * nativePtr ) => new StbTexteditRowPtr ( nativePtr );
public static implicit operator StbTexteditRow * ( StbTexteditRowPtr wrappedPtr ) => wrappedPtr . NativePtr ;
public static implicit operator StbTexteditRowPtr ( IntPtr nativePtr ) => new StbTexteditRowPtr ( nativePtr );
public ref float x0 => ref Unsafe . AsRef < float >(& NativePtr -> x0 );
public ref float x1 => ref Unsafe . AsRef < float >(& NativePtr -> x1 );
public ref float baseline_y_delta => ref Unsafe . AsRef < float >(& NativePtr -> baseline_y_delta );
public ref float ymin => ref Unsafe . AsRef < float >(& NativePtr -> ymin );
public ref float ymax => ref Unsafe . AsRef < float >(& NativePtr -> ymax );
public ref int num_chars => ref Unsafe . AsRef < int >(& NativePtr -> num_chars );
}
}
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings