Implement native text face selection

This commit is contained in:
gamer147
2026-07-28 14:16:24 -04:00
parent a991d5699c
commit f885ac4189
12 changed files with 270 additions and 33 deletions

View File

@@ -27,9 +27,10 @@ public readonly record struct AdvTextStyle(
int RenderMode,
int EffectOffsetX,
int EffectOffsetY,
int LineSpacing)
int LineSpacing,
string FontFace)
{
public static AdvTextStyle Default => new(0, 0, false, 0, 0, 0, 0, 0, 6);
public static AdvTextStyle Default => new(0, 0, false, 0, 0, 0, 0, 0, 6, "");
}
/// <summary>A stable snapshot of the layout state associated with a retained record.</summary>