Navigation
API > API/Runtime > API/Runtime/SlateCore > API/Runtime/SlateCore/Fonts
References
| Module | SlateCore |
| Header | /Engine/Source/Runtime/SlateCore/Public/Fonts/FontRasterizationMode.h |
| Include | #include "Fonts/FontRasterizationMode.h" |
Syntax
enum EFontRasterizationMode
{
Bitmap,
Msdf,
Sdf,
SdfApproximation,
}
Values
| Name | Description |
|---|---|
| Bitmap | Glyphs are rasterized directly into alpha mask bitmaps per size and skew. |
| Msdf | Glyphs are rasterized into multi-channel signed distance fields, which are size and skew agnostic. |
| Sdf | Glyphs are rasterized into single-channel signed distance fields, which are size and skew agnostic. |
| SdfApproximation | Glyphs are rasterized into approximate distance fields, which are size and skew agnostic. |
Remarks
Enumerates supported font rasterization modes.