mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -1,47 +0,0 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
// ------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using HexaGen.Runtime;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Dalamud.Bindings.ImGui
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum ImDrawListFlags : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
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/>
|
||||
/// </summary>
|
||||
AntiAliasedLines = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// Enable anti-aliased linesborders using textures when possible. Require backend to render with bilinear filtering (NOT pointnearest filtering).<br/>
|
||||
/// </summary>
|
||||
AntiAliasedLinesUseTex = unchecked(2),
|
||||
|
||||
/// <summary>
|
||||
/// Enable anti-aliased edge around filled shapes (rounded rectangles, circles).<br/>
|
||||
/// </summary>
|
||||
AntiAliasedFill = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// Can emit 'VtxOffset > 0' to allow large meshes. Set when 'ImGuiBackendFlags_RendererHasVtxOffset' is enabled.<br/>
|
||||
/// </summary>
|
||||
AllowVtxOffset = unchecked(8),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue