ImageSharp/SixLabors.Fonts/Tables/AdvancedTypographic/MarkZeroingMode.cs
2026-08-03 22:31:27 +02:00

26 lines
609 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Tables.AdvancedTypographic {
/// <summary>
/// Provides enumeration determining when to zero mark advances.
/// </summary>
internal enum MarkZeroingMode
{
/// <summary>
/// Zero mark advances before GPOS processing.
/// </summary>
PreGPos,
/// <summary>
/// Zero mark advances after GPOS processing.
/// </summary>
PostGpos,
/// <summary>
/// Do not zero mark advances.
/// </summary>
None
}
}