// ------------------------------------------------------------------------------
//
// 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 HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
///
/// To be documented.
///
[Flags]
public enum ImDrawFlags : int
{
///
/// To be documented.
///
None = unchecked(0),
///
/// PathStroke(), AddPolyline(): specify that shape should be closed (Important: this is always == 1 for legacy reason)
///
Closed = unchecked(1),
///
/// AddRect(), AddRectFilled(), PathRect(): enable rounding top-left corner only (when rounding > 0.0f, we default to all corners). Was 0x01.
///
RoundCornersTopLeft = unchecked(16),
///
/// AddRect(), AddRectFilled(), PathRect(): enable rounding top-right corner only (when rounding > 0.0f, we default to all corners). Was 0x02.
///
RoundCornersTopRight = unchecked(32),
///
/// AddRect(), AddRectFilled(), PathRect(): enable rounding bottom-left corner only (when rounding > 0.0f, we default to all corners). Was 0x04.
///
RoundCornersBottomLeft = unchecked(64),
///
/// AddRect(), AddRectFilled(), PathRect(): enable rounding bottom-right corner only (when rounding > 0.0f, we default to all corners). Wax 0x08.
///
RoundCornersBottomRight = unchecked(128),
///
/// AddRect(), AddRectFilled(), PathRect(): disable rounding on all corners (when rounding > 0.0f). This is NOT zero, NOT an implicit flag!
///
RoundCornersNone = unchecked(256),
///
/// To be documented.
///
RoundCornersTop = unchecked(48),
///
/// To be documented.
///
RoundCornersBottom = unchecked(192),
///
/// To be documented.
///
RoundCornersLeft = unchecked(80),
///
/// To be documented.
///
RoundCornersRight = unchecked(160),
///
/// To be documented.
///
RoundCornersAll = unchecked(240),
///
/// Default to ALL corners if none of the _RoundCornersXX flags are specified.
///
RoundCornersDefault = RoundCornersAll,
///
/// To be documented.
///
RoundCornersMask = unchecked(496),
}
}