// ------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ using System; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using HexaGen.Runtime; using System.Numerics; namespace Dalamud.Bindings.ImGui { /// /// [Internal] For use by ImDrawList
///
[StructLayout(LayoutKind.Sequential)] public partial struct ImDrawCmdHeader { /// /// To be documented. /// public Vector4 ClipRect; /// /// To be documented. /// public ImTextureID TextureId; /// /// To be documented. /// public uint VtxOffset; /// /// To be documented. /// public unsafe ImDrawCmdHeader(Vector4 clipRect = default, ImTextureID textureId = default, uint vtxOffset = default) { ClipRect = clipRect; TextureId = textureId; VtxOffset = vtxOffset; } } }