Regenerate bindings

This commit is contained in:
goaaats 2025-07-20 01:23:58 +02:00
parent 6078c42963
commit e559ae6b20
310 changed files with 361033 additions and 717041 deletions

View file

@ -25,22 +25,22 @@ namespace Dalamud.Bindings.ImGui
None = unchecked(0),
/// <summary>
/// Enable anti-aliased linesborders (*2 the number of triangles for 1.0f wide line or lines thin enough to be drawn using textures, otherwise *3 the number of triangles)<br/>
/// To be documented.
/// </summary>
AntiAliasedLines = unchecked(1),
/// <summary>
/// Enable anti-aliased linesborders using textures when possible. Require backend to render with bilinear filtering (NOT pointnearest filtering).<br/>
/// To be documented.
/// </summary>
AntiAliasedLinesUseTex = unchecked(2),
/// <summary>
/// Enable anti-aliased edge around filled shapes (rounded rectangles, circles).<br/>
/// To be documented.
/// </summary>
AntiAliasedFill = unchecked(4),
/// <summary>
/// Can emit 'VtxOffset &gt; 0' to allow large meshes. Set when 'ImGuiBackendFlags_RendererHasVtxOffset' is enabled.<br/>
/// To be documented.
/// </summary>
AllowVtxOffset = unchecked(8),
}