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/ImGuiTabBarFlags.gen.cs
18 lines | 440 B | text/x-csharp | CSharpLexer
Add ImGui.
r16 namespace ImGuiNET
{
[System.Flags]
public enum ImGuiTabBarFlags
{
None = 0,
Get really basic graph working.
r503 Reorderable = 1,
AutoSelectNewTabs = 2,
TabListPopupButton = 4,
NoCloseWithMiddleMouseButton = 8,
NoTabListScrollingButtons = 16,
NoTooltip = 32,
FittingPolicyResizeDown = 64,
FittingPolicyScroll = 128,
FittingPolicyMask = 192,
FittingPolicyDefault = 64,
Add ImGui.
r16 }
}