Show More
Commit Description:
Unify row appearance.
Commit Description:
Unify row appearance.
References:
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiViewportFlags.gen.cs
21 lines | 476 B | text/x-csharp | CSharpLexer
21 lines | 476 B | text/x-csharp | CSharpLexer
r16 | namespace ImGuiNET | |||
{ | ||||
[System.Flags] | ||||
public enum ImGuiViewportFlags | ||||
{ | ||||
None = 0, | ||||
r503 | IsPlatformWindow = 1, | |||
IsPlatformMonitor = 2, | ||||
OwnedByApp = 4, | ||||
NoDecoration = 8, | ||||
NoTaskBarIcon = 16, | ||||
NoFocusOnAppearing = 32, | ||||
NoFocusOnClick = 64, | ||||
NoInputs = 128, | ||||
NoRendererClear = 256, | ||||
TopMost = 512, | ||||
Minimized = 1024, | ||||
NoAutoMerge = 2048, | ||||
CanHostOtherWindows = 4096, | ||||
r16 | } | |||
} | ||||