ReFuel.FreeType/FTLoadFlags.cs

28 lines
665 B
C#
Raw Normal View History

2024-03-23 09:56:10 +01:00
using System;
namespace Quik.FreeType
{
[Flags]
public enum FTLoadFlags
{
Default = 0,
NoScale = 1 << 0,
NoHinting = 1 << 1,
Render = 1 << 2,
NoBitmap = 1 << 3,
VerticalLayout = 1 << 4,
ForceAutoHint = 1 << 5,
CropBitmap = 1 << 6,
Pedantic = 1 << 7,
IgnoreGlobalAdvanceWidth = 1 << 9,
NoRecurse = 1 << 10,
IgnoreTransform = 1 << 11,
Monochrome= 1 << 12,
LinearDesign = 1 << 13,
SbitsOnly = 1 << 14,
NoAutoHint = 1 << 15,
Color = 1 << 20,
ComputeMetrics = 1 << 21,
BitmapMetricsOnly = 1 << 22
}
}