Enums/ImDrawFlags.cs
namespace Duccsoft.ImGui;
public enum ImDrawFlags
{
None = 0, /*
Closed = 1 << 0,
RoundCornersTopLeft = 1 << 4,
RoundCornersTopRight = 1 << 5,
RoundCornersBottomLeft = 1 << 6,
RoundCornersBottomRight = 1 << 7,
RoundCornersNone = 1 << 8,
RoundCornersTop = RoundCornersTopLeft | RoundCornersTopRight,
RoundCornersBottom = RoundCornersBottomLeft | RoundCornersBottomRight,
RoundCornersLeft = RoundCornersBottomLeft | RoundCornersTopLeft,
RoundCornersRight = RoundCornersBottomRight | RoundCornersTopRight,
RoundCornersAll = RoundCornersTopLeft | RoundCornersTopRight | RoundCornersBottomLeft | RoundCornersBottomRight,
RoundCornersDefault_ = RoundCornersAll,
RoundCornersMask_ = RoundCornersAll | RoundCornersNone, */
};