ReFuel.FreeType/FaceFlag.cs

28 lines
627 B
C#
Raw Permalink Normal View History

2024-03-23 09:56:10 +01:00
using System;
2024-06-20 11:39:15 +02:00
namespace ReFuel.FreeType
2024-03-23 09:56:10 +01:00
{
[Flags]
public enum FaceFlag : int
{
Scalable = 1 << 0,
FixedSizes = 1 << 1,
FixedWidth = 1 << 2,
Sfnt = 1 << 3,
Horizontal = 1 << 4,
Vertical = 1 << 5,
Kerning = 1 << 6,
FastGlyphs = 1 << 7,
MultipleMasters = 1 << 8,
GlyphNames = 1 << 9,
ExternalStream = 1 << 10,
Hinter = 1 << 11,
CidKeyed = 1 << 12,
Tricky = 1 << 13,
Color = 1 << 14,
Variation = 1 << 15,
Svg = 1 << 16,
Sbix = 1 << 17,
SbixOverlay = 1 << 18
}
}