// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// ------------------------------------------------------------------------------
using System;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
///
/// To be documented.
///
[Flags]
public enum ImFontAtlasFlags : int
{
///
/// To be documented.
///
None = unchecked(0),
///
/// Don't round the height to next power of two
///
NoPowerOfTwoHeight = unchecked(1),
///
/// Don't build software mouse cursors into the atlas (save a little texture memory)
///
NoMouseCursors = unchecked(2),
///
/// Don't build thick line textures into the atlas (save a little texture memory, allow support for pointnearest filtering). The AntiAliasedLinesUseTex features uses them, otherwise they will be rendered using polygons (more expensive for CPUGPU).
///
NoBakedLines = unchecked(4),
}
}