Navigation
API > API/Runtime > API/Runtime/SlateCore
Enumerates supported font rasterization modes.
| Name | EFontRasterizationMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Fonts/FontRasterizationMode.h |
| Include Path | #include "Fonts/FontRasterizationMode.h" |
Syntax
enum EFontRasterizationMode
{
Bitmap,
Msdf,
Sdf,
SdfApproximation,
}
Values
| Name | Remarks |
|---|---|
| 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. |