Working improvements from docs PR

This commit is contained in:
Wojtek Figat
2023-09-25 11:11:56 +02:00
parent b2ec235f01
commit 4fd8697082

View File

@@ -20,7 +20,7 @@ API_ENUM() enum class FontHinting : byte
Default, Default,
/// <summary> /// <summary>
/// Force the use of an automatic hinting algorithm (over the font's native hinter). /// Force the use of an automatic hinting algorithm (over the fonts native hinter).
/// </summary> /// </summary>
Auto, Auto,
@@ -35,7 +35,7 @@ API_ENUM() enum class FontHinting : byte
Monochrome, Monochrome,
/// <summary> /// <summary>
/// Do not use hinting. This generally generates 'blurrier' bitmap glyphs when the glyph are rendered in any of the anti-aliased modes. /// Do not use hinting. This generally generates 'blurrier' bitmap glyphs when the glyphs are rendered in any of the anti-aliased modes.
/// </summary> /// </summary>
None, None,
}; };
@@ -51,7 +51,7 @@ API_ENUM(Attributes="Flags") enum class FontFlags : byte
None = 0, None = 0,
/// <summary> /// <summary>
/// Enables using anti-aliasing for font characters. Otherwise font will use monochrome data. /// Enables using anti-aliasing for font characters. Otherwise font will use the monochrome data.
/// </summary> /// </summary>
AntiAliasing = 1, AntiAliasing = 1,