Show More
Commit Description:
Further tweaks to limit performance impact of timing calculation.
Commit Description:
Further tweaks to limit performance impact of timing calculation.
References:
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiColorEditFlags.gen.cs
36 lines | 899 B | text/x-csharp | CSharpLexer
36 lines | 899 B | text/x-csharp | CSharpLexer
r16 | namespace ImGuiNET | |||
{ | ||||
[System.Flags] | ||||
public enum ImGuiColorEditFlags | ||||
{ | ||||
None = 0, | ||||
r503 | NoAlpha = 2, | |||
NoPicker = 4, | ||||
NoOptions = 8, | ||||
NoSmallPreview = 16, | ||||
NoInputs = 32, | ||||
NoTooltip = 64, | ||||
NoLabel = 128, | ||||
NoSidePreview = 256, | ||||
NoDragDrop = 512, | ||||
NoBorder = 1024, | ||||
AlphaBar = 65536, | ||||
AlphaPreview = 131072, | ||||
AlphaPreviewHalf = 262144, | ||||
HDR = 524288, | ||||
DisplayRGB = 1048576, | ||||
DisplayHSV = 2097152, | ||||
DisplayHex = 4194304, | ||||
Uint8 = 8388608, | ||||
Float = 16777216, | ||||
PickerHueBar = 33554432, | ||||
PickerHueWheel = 67108864, | ||||
InputRGB = 134217728, | ||||
InputHSV = 268435456, | ||||
r505 | DefaultOptions = 177209344, | |||
r503 | DisplayMask = 7340032, | |||
DataTypeMask = 25165824, | ||||
PickerMask = 100663296, | ||||
InputMask = 402653184, | ||||
r16 | } | |||
} | ||||