Show More
Commit Description:
Streamline performance of debug code....
Commit Description:
Streamline performance of debug code. Use raw floats for draw times and avoid resorting so many times. Seems to reduce time by about a third. Still ends up slow after leaving the game running for a few minutes.
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiTabBarFlags.gen.cs
18 lines | 440 B | text/x-csharp | CSharpLexer
namespace ImGuiNET
{
[System.Flags]
public enum ImGuiTabBarFlags
{
None = 0,
Reorderable = 1,
AutoSelectNewTabs = 2,
TabListPopupButton = 4,
NoCloseWithMiddleMouseButton = 8,
NoTabListScrollingButtons = 16,
NoTooltip = 32,
FittingPolicyResizeDown = 64,
FittingPolicyScroll = 128,
FittingPolicyMask = 192,
FittingPolicyDefault = 64,
}
}