// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.ImageSharp.Drawing.Text { /// /// Optional semantic classification for layers to aid monochrome projection or decoration handling. /// public enum GlyphLayerKind { /// /// Regular glyph geometry layer. /// Glyph = 0, /// /// Text decoration geometry (underline/overline/strikethrough). /// Decoration = 1, /// /// Painted layer (e.g. color emoji glyph). /// Painted = 2 } }