Show More
Commit Description:
Tidy code.
Commit Description:
Tidy code.
References:
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImDrawChannel.gen.cs
24 lines | 1.1 KiB | text/x-csharp | CSharpLexer
24 lines | 1.1 KiB | text/x-csharp | CSharpLexer
r16 | 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); | ||||
} | ||||
} | ||||