// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts.WellKnownIds { /// /// Encoding IDS /// internal enum EncodingIDs : ushort { /// /// Unicode 1.0 semantics /// Unicode1 = 0, /// /// Unicode 1.1 semantics /// Unicode11 = 1, /// /// ISO/IEC 10646 semantics /// ISO10646 = 2, /// /// Unicode 2.0 and onwards semantics, Unicode BMP only (cmap subtable formats 0, 4, 6). /// Unicode2 = 3, /// /// Unicode 2.0 and onwards semantics, Unicode full repertoire (cmap subtable formats 0, 4, 6, 10, 12). /// Unicode2Plus = 4, /// /// Unicode Variation Sequences (cmap subtable format 14). /// UnicodeVariationSequences = 5, /// /// Unicode full repertoire (cmap subtable formats 0, 4, 6, 10, 12, 13) /// UnicodeFull = 6, } }