enum
ImGui::ImFontAtlasFlags
Overview
Defined in:
types.crEnum Members
-
None =
0 -
NoPowerOfTwoHeight =
1 -
Don't round the height to next power of two
-
NoMouseCursors =
2 -
Don't build software mouse cursors into the atlas (save a little texture memory)
-
NoBakedLines =
4 -
Don't build thick line textures into the atlas (save a little texture memory, allow support for point/nearest filtering). The AntiAliasedLinesUseTex features uses them, otherwise they will be rendered using polygons (more expensive for CPU/GPU).
-
All =
7
Instance Method Summary
-
#no_baked_lines?
Returns
trueif this enum value containsNoBakedLines -
#no_mouse_cursors?
Returns
trueif this enum value containsNoMouseCursors -
#no_power_of_two_height?
Returns
trueif this enum value containsNoPowerOfTwoHeight -
#none?
Returns
trueif this enum value containsNone