Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Tidy code.
Commit Description:
Tidy code.
using System ;
using System.Numerics ;
using System.Runtime.CompilerServices ;
using System.Text ;
namespace ImGuiNET
{
public unsafe partial struct ImDrawChannel
{
public ImVector _CmdBuffer ;
public ImVector _IdxBuffer ;
}
public unsafe partial struct ImDrawChannelPtr
{
public ImDrawChannel * NativePtr { get ; }
public ImDrawChannelPtr ( ImDrawChannel * nativePtr ) => NativePtr = nativePtr ;
public ImDrawChannelPtr ( IntPtr nativePtr ) => NativePtr = ( ImDrawChannel *) nativePtr ;
public static implicit operator ImDrawChannelPtr ( ImDrawChannel * nativePtr ) => new ImDrawChannelPtr ( nativePtr );
public static implicit operator ImDrawChannel * ( ImDrawChannelPtr wrappedPtr ) => wrappedPtr . NativePtr ;
public static implicit operator ImDrawChannelPtr ( IntPtr nativePtr ) => new ImDrawChannelPtr ( nativePtr );
public ImPtrVector < ImDrawCmdPtr > _CmdBuffer => new ImPtrVector < ImDrawCmdPtr >( NativePtr -> _CmdBuffer , Unsafe . SizeOf < ImDrawCmd >());
public ImVector < ushort > _IdxBuffer => new ImVector < ushort >( NativePtr -> _IdxBuffer );
}
}
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