Show More
Commit Description:
Remove cull() check....
Commit Description:
Remove cull() check. This speeds up drawing tiles by a factor of roughly 2, lol. When drawing a 200x200 map, drawing tiles goes from taking 24ms to 12ms.
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiButtonFlags.gen.cs
13 lines | 256 B | text/x-csharp | CSharpLexer
namespace ImGuiNET
{
[System.Flags]
public enum ImGuiButtonFlags
{
None = 0,
MouseButtonLeft = 1,
MouseButtonRight = 2,
MouseButtonMiddle = 4,
MouseButtonMask = 7,
MouseButtonDefault = 1,
}
}