Home | History | Annotate | Download | only in sfnt
      1 /*
      2  * Copyright 2012 Google Inc.
      3  *
      4  * Use of this source code is governed by a BSD-style license that can be
      5  * found in the LICENSE file.
      6  */
      7 
      8 #ifndef SkOTTable_OS_2_V2_DEFINED
      9 #define SkOTTable_OS_2_V2_DEFINED
     10 
     11 #include "SkEndian.h"
     12 #include "SkIBMFamilyClass.h"
     13 #include "SkOTTableTypes.h"
     14 #include "SkPanose.h"
     15 #include "SkTypedEnum.h"
     16 
     17 #pragma pack(push, 1)
     18 
     19 struct SkOTTableOS2_V2 {
     20     SK_OT_USHORT version;
     21     static const SK_OT_USHORT VERSION = SkTEndian_SwapBE16(2);
     22 
     23     SK_OT_SHORT xAvgCharWidth;
     24     struct WeightClass {
     25         SK_TYPED_ENUM(Value, SK_OT_USHORT,
     26             ((Thin, SkTEndian_SwapBE16(100)))
     27             ((ExtraLight, SkTEndian_SwapBE16(200)))
     28             ((Light, SkTEndian_SwapBE16(300)))
     29             ((Normal, SkTEndian_SwapBE16(400)))
     30             ((Medium, SkTEndian_SwapBE16(500)))
     31             ((SemiBold, SkTEndian_SwapBE16(600)))
     32             ((Bold, SkTEndian_SwapBE16(700)))
     33             ((ExtraBold, SkTEndian_SwapBE16(800)))
     34             ((Black, SkTEndian_SwapBE16(900)))
     35             SK_SEQ_END,
     36         SK_SEQ_END)
     37         SK_OT_USHORT value;
     38     } usWeightClass;
     39     struct WidthClass {
     40         SK_TYPED_ENUM(Value, SK_OT_USHORT,
     41             ((UltraCondensed, SkTEndian_SwapBE16(1)))
     42             ((ExtraCondensed, SkTEndian_SwapBE16(2)))
     43             ((Condensed, SkTEndian_SwapBE16(3)))
     44             ((SemiCondensed, SkTEndian_SwapBE16(4)))
     45             ((Medium, SkTEndian_SwapBE16(5)))
     46             ((SemiExpanded, SkTEndian_SwapBE16(6)))
     47             ((Expanded, SkTEndian_SwapBE16(7)))
     48             ((ExtraExpanded, SkTEndian_SwapBE16(8)))
     49             ((UltraExpanded, SkTEndian_SwapBE16(9))),
     50         (value)SK_SEQ_END)
     51     } usWidthClass;
     52     union Type {
     53         struct Field {
     54             //8-15
     55             SK_OT_BYTE_BITFIELD(
     56                 NoSubsetting,
     57                 Bitmap,
     58                 Reserved10,
     59                 Reserved11,
     60                 Reserved12,
     61                 Reserved13,
     62                 Reserved14,
     63                 Reserved15)
     64             //0-7
     65             SK_OT_BYTE_BITFIELD(
     66                 Reserved00,
     67                 Restricted,
     68                 PreviewPrint,
     69                 Editable,
     70                 Reserved04,
     71                 Reserved05,
     72                 Reserved06,
     73                 Reserved07)
     74         } field;
     75         struct Raw {
     76             static const SK_OT_USHORT Installable = SkTEndian_SwapBE16(0);
     77             static const SK_OT_USHORT RestrictedMask = SkTEndian_SwapBE16(1 << 1);
     78             static const SK_OT_USHORT PreviewPrintMask = SkTEndian_SwapBE16(1 << 2);
     79             static const SK_OT_USHORT EditableMask = SkTEndian_SwapBE16(1 << 3);
     80             static const SK_OT_USHORT NoSubsettingMask = SkTEndian_SwapBE16(1 << 8);
     81             static const SK_OT_USHORT BitmapMask = SkTEndian_SwapBE16(1 << 9);
     82             SK_OT_USHORT value;
     83         } raw;
     84     } fsType;
     85     SK_OT_SHORT ySubscriptXSize;
     86     SK_OT_SHORT ySubscriptYSize;
     87     SK_OT_SHORT ySubscriptXOffset;
     88     SK_OT_SHORT ySubscriptYOffset;
     89     SK_OT_SHORT ySuperscriptXSize;
     90     SK_OT_SHORT ySuperscriptYSize;
     91     SK_OT_SHORT ySuperscriptXOffset;
     92     SK_OT_SHORT ySuperscriptYOffset;
     93     SK_OT_SHORT yStrikeoutSize;
     94     SK_OT_SHORT yStrikeoutPosition;
     95     SkIBMFamilyClass sFamilyClass;
     96     SkPanose panose;
     97     union UnicodeRange {
     98         struct Field {
     99             //l0 24-31
    100             SK_OT_BYTE_BITFIELD(
    101                 Thai,
    102                 Lao,
    103                 Georgian,
    104                 Reserved027,
    105                 HangulJamo,
    106                 LatinExtendedAdditional,
    107                 GreekExtended,
    108                 GeneralPunctuation)
    109             //l0 16-23
    110             SK_OT_BYTE_BITFIELD(
    111                 Bengali,
    112                 Gurmukhi,
    113                 Gujarati,
    114                 Oriya,
    115                 Tamil,
    116                 Telugu,
    117                 Kannada,
    118                 Malayalam)
    119             //l0 8-15
    120             SK_OT_BYTE_BITFIELD(
    121                 Reserved008,
    122                 Cyrillic,
    123                 Armenian,
    124                 Hebrew,
    125                 Reserved012,
    126                 Arabic,
    127                 Reserved014,
    128                 Devanagari)
    129             //l0 0-7
    130             SK_OT_BYTE_BITFIELD(
    131                 BasicLatin,
    132                 Latin1Supplement,
    133                 LatinExtendedA,
    134                 LatinExtendedB,
    135                 IPAExtensions,
    136                 SpacingModifierLetters,
    137                 CombiningDiacriticalMarks,
    138                 Greek)
    139 
    140             //l1 24-31
    141             SK_OT_BYTE_BITFIELD(
    142                 Hangul,
    143                 Surrogates,
    144                 Reserved058,
    145                 CJKUnifiedIdeographs,
    146                 PrivateUseArea,
    147                 CJKCompatibilityIdeographs,
    148                 AlphabeticPresentationForms,
    149                 ArabicPresentationFormsA)
    150             //l1 16-23
    151             SK_OT_BYTE_BITFIELD(
    152                 CJKSymbolsAndPunctuation,
    153                 Hiragana,
    154                 Katakana,
    155                 Bopomofo,
    156                 HangulCompatibilityJamo,
    157                 CJKMiscellaneous,
    158                 EnclosedCJKLettersAndMonths,
    159                 CJKCompatibility)
    160             //l1 8-15
    161             SK_OT_BYTE_BITFIELD(
    162                 ControlPictures,
    163                 OpticalCharacterRecognition,
    164                 EnclosedAlphanumerics,
    165                 BoxDrawing,
    166                 BlockElements,
    167                 GeometricShapes,
    168                 MiscellaneousSymbols,
    169                 Dingbats)
    170             //l1 0-7
    171             SK_OT_BYTE_BITFIELD(
    172                 SuperscriptsAndSubscripts,
    173                 CurrencySymbols,
    174                 CombiningDiacriticalMarksForSymbols,
    175                 LetterlikeSymbols,
    176                 NumberForms,
    177                 Arrows,
    178                 MathematicalOperators,
    179                 MiscellaneousTechnical)
    180 
    181             //l2 24-31
    182             SK_OT_BYTE_BITFIELD(
    183                 Reserved088,
    184                 Reserved089,
    185                 Reserved090,
    186                 Reserved091,
    187                 Reserved092,
    188                 Reserved093,
    189                 Reserved094,
    190                 Reserved095)
    191             //l2 16-23
    192             SK_OT_BYTE_BITFIELD(
    193                 Khmer,
    194                 Mongolian,
    195                 Braille,
    196                 Yi,
    197                 Reserved084,
    198                 Reserved085,
    199                 Reserved086,
    200                 Reserved087)
    201             //l2 8-15
    202             SK_OT_BYTE_BITFIELD(
    203                 Thaana,
    204                 Sinhala,
    205                 Myanmar,
    206                 Ethiopic,
    207                 Cherokee,
    208                 UnifiedCanadianSyllabics,
    209                 Ogham,
    210                 Runic)
    211             //l2 0-7
    212             SK_OT_BYTE_BITFIELD(
    213                 CombiningHalfMarks,
    214                 CJKCompatibilityForms,
    215                 SmallFormVariants,
    216                 ArabicPresentationFormsB,
    217                 HalfwidthAndFullwidthForms,
    218                 Specials,
    219                 Tibetan,
    220                 Syriac)
    221 
    222             //l3 24-31
    223             SK_OT_BYTE_BITFIELD(
    224                 Reserved120,
    225                 Reserved121,
    226                 Reserved122,
    227                 Reserved123,
    228                 Reserved124,
    229                 Reserved125,
    230                 Reserved126,
    231                 Reserved127)
    232             //l3 16-23
    233             SK_OT_BYTE_BITFIELD(
    234                 Reserved112,
    235                 Reserved113,
    236                 Reserved114,
    237                 Reserved115,
    238                 Reserved116,
    239                 Reserved117,
    240                 Reserved118,
    241                 Reserved119)
    242             //l3 8-15
    243             SK_OT_BYTE_BITFIELD(
    244                 Reserved104,
    245                 Reserved105,
    246                 Reserved106,
    247                 Reserved107,
    248                 Reserved108,
    249                 Reserved109,
    250                 Reserved110,
    251                 Reserved111)
    252             //l3 0-7
    253             SK_OT_BYTE_BITFIELD(
    254                 Reserved096,
    255                 Reserved097,
    256                 Reserved098,
    257                 Reserved099,
    258                 Reserved100,
    259                 Reserved101,
    260                 Reserved102,
    261                 Reserved103)
    262         } field;
    263         struct Raw {
    264             struct l0 {
    265                 static const SK_OT_ULONG BasicLatinMask = SkTEndian_SwapBE32(1 << 0);
    266                 static const SK_OT_ULONG Latin1SupplementMask = SkTEndian_SwapBE32(1 << 1);
    267                 static const SK_OT_ULONG LatinExtendedAMask = SkTEndian_SwapBE32(1 << 2);
    268                 static const SK_OT_ULONG LatinExtendedBMask = SkTEndian_SwapBE32(1 << 3);
    269                 static const SK_OT_ULONG IPAExtensionsMask = SkTEndian_SwapBE32(1 << 4);
    270                 static const SK_OT_ULONG SpacingModifierLettersMask = SkTEndian_SwapBE32(1 << 5);
    271                 static const SK_OT_ULONG CombiningDiacriticalMarksMask = SkTEndian_SwapBE32(1 << 6);
    272                 static const SK_OT_ULONG GreekMask = SkTEndian_SwapBE32(1 << 7);
    273                 //Reserved
    274                 static const SK_OT_ULONG CyrillicMask = SkTEndian_SwapBE32(1 << 9);
    275                 static const SK_OT_ULONG ArmenianMask = SkTEndian_SwapBE32(1 << 10);
    276                 static const SK_OT_ULONG HebrewMask = SkTEndian_SwapBE32(1 << 11);
    277                 //Reserved
    278                 static const SK_OT_ULONG ArabicMask = SkTEndian_SwapBE32(1 << 13);
    279                 //Reserved
    280                 static const SK_OT_ULONG DevanagariMask = SkTEndian_SwapBE32(1 << 15);
    281                 static const SK_OT_ULONG BengaliMask = SkTEndian_SwapBE32(1 << 16);
    282                 static const SK_OT_ULONG GurmukhiMask = SkTEndian_SwapBE32(1 << 17);
    283                 static const SK_OT_ULONG GujaratiMask = SkTEndian_SwapBE32(1 << 18);
    284                 static const SK_OT_ULONG OriyaMask = SkTEndian_SwapBE32(1 << 19);
    285                 static const SK_OT_ULONG TamilMask = SkTEndian_SwapBE32(1 << 20);
    286                 static const SK_OT_ULONG TeluguMask = SkTEndian_SwapBE32(1 << 21);
    287                 static const SK_OT_ULONG KannadaMask = SkTEndian_SwapBE32(1 << 22);
    288                 static const SK_OT_ULONG MalayalamMask = SkTEndian_SwapBE32(1 << 23);
    289                 static const SK_OT_ULONG ThaiMask = SkTEndian_SwapBE32(1 << 24);
    290                 static const SK_OT_ULONG LaoMask = SkTEndian_SwapBE32(1 << 25);
    291                 static const SK_OT_ULONG GeorgianMask = SkTEndian_SwapBE32(1 << 26);
    292                 //Reserved
    293                 static const SK_OT_ULONG HangulJamoMask = SkTEndian_SwapBE32(1 << 28);
    294                 static const SK_OT_ULONG LatinExtendedAdditionalMask = SkTEndian_SwapBE32(1 << 29);
    295                 static const SK_OT_ULONG GreekExtendedMask = SkTEndian_SwapBE32(1 << 30);
    296                 static const SK_OT_ULONG GeneralPunctuationMask = SkTEndian_SwapBE32(1 << 31);
    297             };
    298             struct l1 {
    299                 static const SK_OT_ULONG SuperscriptsAndSubscriptsMask = SkTEndian_SwapBE32(1 << (32 - 32));
    300                 static const SK_OT_ULONG CurrencySymbolsMask = SkTEndian_SwapBE32(1 << (33 - 32));
    301                 static const SK_OT_ULONG CombiningDiacriticalMarksForSymbolsMask = SkTEndian_SwapBE32(1 << (34 - 32));
    302                 static const SK_OT_ULONG LetterlikeSymbolsMask = SkTEndian_SwapBE32(1 << (35 - 32));
    303                 static const SK_OT_ULONG NumberFormsMask = SkTEndian_SwapBE32(1 << (36 - 32));
    304                 static const SK_OT_ULONG ArrowsMask = SkTEndian_SwapBE32(1 << (37 - 32));
    305                 static const SK_OT_ULONG MathematicalOperatorsMask = SkTEndian_SwapBE32(1 << (38 - 32));
    306                 static const SK_OT_ULONG MiscellaneousTechnicalMask = SkTEndian_SwapBE32(1 << (39 - 32));
    307                 static const SK_OT_ULONG ControlPicturesMask = SkTEndian_SwapBE32(1 << (40 - 32));
    308                 static const SK_OT_ULONG OpticalCharacterRecognitionMask = SkTEndian_SwapBE32(1 << (41 - 32));
    309                 static const SK_OT_ULONG EnclosedAlphanumericsMask = SkTEndian_SwapBE32(1 << (42 - 32));
    310                 static const SK_OT_ULONG BoxDrawingMask = SkTEndian_SwapBE32(1 << (43 - 32));
    311                 static const SK_OT_ULONG BlockElementsMask = SkTEndian_SwapBE32(1 << (44 - 32));
    312                 static const SK_OT_ULONG GeometricShapesMask = SkTEndian_SwapBE32(1 << (45 - 32));
    313                 static const SK_OT_ULONG MiscellaneousSymbolsMask = SkTEndian_SwapBE32(1 << (46 - 32));
    314                 static const SK_OT_ULONG DingbatsMask = SkTEndian_SwapBE32(1 << (47 - 32));
    315                 static const SK_OT_ULONG CJKSymbolsAndPunctuationMask = SkTEndian_SwapBE32(1 << (48 - 32));
    316                 static const SK_OT_ULONG HiraganaMask = SkTEndian_SwapBE32(1 << (49 - 32));
    317                 static const SK_OT_ULONG KatakanaMask = SkTEndian_SwapBE32(1 << (50 - 32));
    318                 static const SK_OT_ULONG BopomofoMask = SkTEndian_SwapBE32(1 << (51 - 32));
    319                 static const SK_OT_ULONG HangulCompatibilityJamoMask = SkTEndian_SwapBE32(1 << (52 - 32));
    320                 static const SK_OT_ULONG CJKMiscellaneousMask = SkTEndian_SwapBE32(1 << (53 - 32));
    321                 static const SK_OT_ULONG EnclosedCJKLettersAndMonthsMask = SkTEndian_SwapBE32(1 << (54 - 32));
    322                 static const SK_OT_ULONG CJKCompatibilityMask = SkTEndian_SwapBE32(1 << (55 - 32));
    323                 static const SK_OT_ULONG HangulMask = SkTEndian_SwapBE32(1 << (56 - 32));
    324                 static const SK_OT_ULONG SurrogatesMask = SkTEndian_SwapBE32(1 << (57 - 32));
    325                 //Reserved
    326                 static const SK_OT_ULONG CJKUnifiedIdeographsMask = SkTEndian_SwapBE32(1 << (59 - 32));
    327                 static const SK_OT_ULONG PrivateUseAreaMask = SkTEndian_SwapBE32(1 << (60 - 32));
    328                 static const SK_OT_ULONG CJKCompatibilityIdeographsMask = SkTEndian_SwapBE32(1 << (61 - 32));
    329                 static const SK_OT_ULONG AlphabeticPresentationFormsMask = SkTEndian_SwapBE32(1 << (62 - 32));
    330                 static const SK_OT_ULONG ArabicPresentationFormsAMask = SkTEndian_SwapBE32(1 << (63 - 32));
    331             };
    332             struct l2 {
    333                 static const SK_OT_ULONG CombiningHalfMarksMask = SkTEndian_SwapBE32(1 << (64 - 64));
    334                 static const SK_OT_ULONG CJKCompatibilityFormsMask = SkTEndian_SwapBE32(1 << (65 - 64));
    335                 static const SK_OT_ULONG SmallFormVariantsMask = SkTEndian_SwapBE32(1 << (66 - 64));
    336                 static const SK_OT_ULONG ArabicPresentationFormsBMask = SkTEndian_SwapBE32(1 << (67 - 64));
    337                 static const SK_OT_ULONG HalfwidthAndFullwidthFormsMask = SkTEndian_SwapBE32(1 << (68 - 64));
    338                 static const SK_OT_ULONG SpecialsMask = SkTEndian_SwapBE32(1 << (69 - 64));
    339                 static const SK_OT_ULONG TibetanMask = SkTEndian_SwapBE32(1 << (70 - 64));
    340                 static const SK_OT_ULONG SyriacMask = SkTEndian_SwapBE32(1 << (71 - 64));
    341                 static const SK_OT_ULONG ThaanaMask = SkTEndian_SwapBE32(1 << (72 - 64));
    342                 static const SK_OT_ULONG SinhalaMask = SkTEndian_SwapBE32(1 << (73 - 64));
    343                 static const SK_OT_ULONG MyanmarMask = SkTEndian_SwapBE32(1 << (74 - 64));
    344                 static const SK_OT_ULONG EthiopicMask = SkTEndian_SwapBE32(1 << (75 - 64));
    345                 static const SK_OT_ULONG CherokeeMask = SkTEndian_SwapBE32(1 << (76 - 64));
    346                 static const SK_OT_ULONG UnifiedCanadianSyllabicsMask = SkTEndian_SwapBE32(1 << (77 - 64));
    347                 static const SK_OT_ULONG OghamMask = SkTEndian_SwapBE32(1 << (78 - 64));
    348                 static const SK_OT_ULONG RunicMask = SkTEndian_SwapBE32(1 << (79 - 64));
    349                 static const SK_OT_ULONG KhmerMask = SkTEndian_SwapBE32(1 << (80 - 64));
    350                 static const SK_OT_ULONG MongolianMask = SkTEndian_SwapBE32(1 << (81 - 64));
    351                 static const SK_OT_ULONG BrailleMask = SkTEndian_SwapBE32(1 << (82 - 64));
    352                 static const SK_OT_ULONG YiMask = SkTEndian_SwapBE32(1 << (83 - 64));
    353             };
    354             SK_OT_ULONG value[4];
    355         } raw;
    356     } ulUnicodeRange;
    357     SK_OT_CHAR achVendID[4];
    358     union Selection {
    359         struct Field {
    360             //8-15
    361             SK_OT_BYTE_BITFIELD(
    362                 Reserved08,
    363                 Reserved09,
    364                 Reserved10,
    365                 Reserved11,
    366                 Reserved12,
    367                 Reserved13,
    368                 Reserved14,
    369                 Reserved15)
    370             //0-7
    371             SK_OT_BYTE_BITFIELD(
    372                 Italic,
    373                 Underscore,
    374                 Negative,
    375                 Outlined,
    376                 Strikeout,
    377                 Bold,
    378                 Regular,
    379                 Reserved07)
    380         } field;
    381         struct Raw {
    382             static const SK_OT_USHORT ItalicMask = SkTEndian_SwapBE16(1 << 0);
    383             static const SK_OT_USHORT UnderscoreMask = SkTEndian_SwapBE16(1 << 1);
    384             static const SK_OT_USHORT NegativeMask = SkTEndian_SwapBE16(1 << 2);
    385             static const SK_OT_USHORT OutlinedMask = SkTEndian_SwapBE16(1 << 3);
    386             static const SK_OT_USHORT StrikeoutMask = SkTEndian_SwapBE16(1 << 4);
    387             static const SK_OT_USHORT BoldMask = SkTEndian_SwapBE16(1 << 5);
    388             static const SK_OT_USHORT RegularMask = SkTEndian_SwapBE16(1 << 6);
    389             SK_OT_USHORT value;
    390         } raw;
    391     } fsSelection;
    392     SK_OT_USHORT usFirstCharIndex;
    393     SK_OT_USHORT usLastCharIndex;
    394     //version0
    395     SK_OT_SHORT sTypoAscender;
    396     SK_OT_SHORT sTypoDescender;
    397     SK_OT_SHORT sTypoLineGap;
    398     SK_OT_USHORT usWinAscent;
    399     SK_OT_USHORT usWinDescent;
    400     //version1
    401     union CodePageRange {
    402         struct Field {
    403             //l0 24-31
    404             SK_OT_BYTE_BITFIELD(
    405                 Reserved24,
    406                 Reserved25,
    407                 Reserved26,
    408                 Reserved27,
    409                 Reserved28,
    410                 MacintoshCharacterSet,
    411                 OEMCharacterSet,
    412                 SymbolCharacterSet)
    413             //l0 16-23
    414             SK_OT_BYTE_BITFIELD(
    415                 Thai_874,
    416                 JISJapan_932,
    417                 ChineseSimplified_936,
    418                 KoreanWansung_949,
    419                 ChineseTraditional_950,
    420                 KoreanJohab_1361,
    421                 Reserved22,
    422                 Reserved23)
    423             //l0 8-15
    424             SK_OT_BYTE_BITFIELD(
    425                 Vietnamese,
    426                 Reserved09,
    427                 Reserved10,
    428                 Reserved11,
    429                 Reserved12,
    430                 Reserved13,
    431                 Reserved14,
    432                 Reserved15)
    433             //l0 0-7
    434             SK_OT_BYTE_BITFIELD(
    435                 Latin1_1252,
    436                 Latin2EasternEurope_1250,
    437                 Cyrillic_1251,
    438                 Greek_1253,
    439                 Turkish_1254,
    440                 Hebrew_1255,
    441                 Arabic_1256,
    442                 WindowsBaltic_1257)
    443 
    444             //l1 24-31
    445             SK_OT_BYTE_BITFIELD(
    446                 IBMTurkish_857,
    447                 IBMCyrillic_855,
    448                 Latin2_852,
    449                 MSDOSBaltic_775,
    450                 Greek_737,
    451                 Arabic_708,
    452                 WELatin1_850,
    453                 US_437)
    454             //l1 16-23
    455             SK_OT_BYTE_BITFIELD(
    456                 IBMGreek_869,
    457                 MSDOSRussian_866,
    458                 MSDOSNordic_865,
    459                 Arabic_864,
    460                 MSDOSCanadianFrench_863,
    461                 Hebrew_862,
    462                 MSDOSIcelandic_861,
    463                 MSDOSPortuguese_860)
    464             //l1 8-15
    465             SK_OT_BYTE_BITFIELD(
    466                 Reserved40,
    467                 Reserved41,
    468                 Reserved42,
    469                 Reserved43,
    470                 Reserved44,
    471                 Reserved45,
    472                 Reserved46,
    473                 Reserved47)
    474             //l1 0-7
    475             SK_OT_BYTE_BITFIELD(
    476                 Reserved32,
    477                 Reserved33,
    478                 Reserved34,
    479                 Reserved35,
    480                 Reserved36,
    481                 Reserved37,
    482                 Reserved38,
    483                 Reserved39)
    484         } field;
    485         struct Raw {
    486             struct l0 {
    487                 static const SK_OT_ULONG Latin1_1252Mask = SkTEndian_SwapBE32(1 << 0);
    488                 static const SK_OT_ULONG Latin2EasternEurope_1250Mask = SkTEndian_SwapBE32(1 << 1);
    489                 static const SK_OT_ULONG Cyrillic_1251Mask = SkTEndian_SwapBE32(1 << 2);
    490                 static const SK_OT_ULONG Greek_1253Mask = SkTEndian_SwapBE32(1 << 3);
    491                 static const SK_OT_ULONG Turkish_1254Mask = SkTEndian_SwapBE32(1 << 4);
    492                 static const SK_OT_ULONG Hebrew_1255Mask = SkTEndian_SwapBE32(1 << 5);
    493                 static const SK_OT_ULONG Arabic_1256Mask = SkTEndian_SwapBE32(1 << 6);
    494                 static const SK_OT_ULONG WindowsBaltic_1257Mask = SkTEndian_SwapBE32(1 << 7);
    495                 static const SK_OT_ULONG Vietnamese_1258Mask = SkTEndian_SwapBE32(1 << 8);
    496                 static const SK_OT_ULONG Thai_874Mask = SkTEndian_SwapBE32(1 << 16);
    497                 static const SK_OT_ULONG JISJapan_932Mask = SkTEndian_SwapBE32(1 << 17);
    498                 static const SK_OT_ULONG ChineseSimplified_936Mask = SkTEndian_SwapBE32(1 << 18);
    499                 static const SK_OT_ULONG KoreanWansung_949Mask = SkTEndian_SwapBE32(1 << 19);
    500                 static const SK_OT_ULONG ChineseTraditional_950Mask = SkTEndian_SwapBE32(1 << 20);
    501                 static const SK_OT_ULONG KoreanJohab_1361Mask = SkTEndian_SwapBE32(1 << 21);
    502                 static const SK_OT_ULONG MacintoshCharacterSetMask = SkTEndian_SwapBE32(1 << 29);
    503                 static const SK_OT_ULONG OEMCharacterSetMask = SkTEndian_SwapBE32(1 << 30);
    504                 static const SK_OT_ULONG SymbolCharacterSetMask = SkTEndian_SwapBE32(1 << 31);
    505             };
    506             struct l1 {
    507                 static const SK_OT_ULONG IBMGreek_869Mask = SkTEndian_SwapBE32(1 << (48 - 32));
    508                 static const SK_OT_ULONG MSDOSRussian_866Mask = SkTEndian_SwapBE32(1 << (49 - 32));
    509                 static const SK_OT_ULONG MSDOSNordic_865Mask = SkTEndian_SwapBE32(1 << (50 - 32));
    510                 static const SK_OT_ULONG Arabic_864Mask = SkTEndian_SwapBE32(1 << (51 - 32));
    511                 static const SK_OT_ULONG MSDOSCanadianFrench_863Mask = SkTEndian_SwapBE32(1 << (52 - 32));
    512                 static const SK_OT_ULONG Hebrew_862Mask = SkTEndian_SwapBE32(1 << (53 - 32));
    513                 static const SK_OT_ULONG MSDOSIcelandic_861Mask = SkTEndian_SwapBE32(1 << (54 - 32));
    514                 static const SK_OT_ULONG MSDOSPortuguese_860Mask = SkTEndian_SwapBE32(1 << (55 - 32));
    515                 static const SK_OT_ULONG IBMTurkish_857Mask = SkTEndian_SwapBE32(1 << (56 - 32));
    516                 static const SK_OT_ULONG IBMCyrillic_855Mask = SkTEndian_SwapBE32(1 << (57 - 32));
    517                 static const SK_OT_ULONG Latin2_852Mask = SkTEndian_SwapBE32(1 << (58 - 32));
    518                 static const SK_OT_ULONG MSDOSBaltic_775Mask = SkTEndian_SwapBE32(1 << (59 - 32));
    519                 static const SK_OT_ULONG Greek_737Mask = SkTEndian_SwapBE32(1 << (60 - 32));
    520                 static const SK_OT_ULONG Arabic_708Mask = SkTEndian_SwapBE32(1 << (61 - 32));
    521                 static const SK_OT_ULONG WELatin1_850Mask = SkTEndian_SwapBE32(1 << (62 - 32));
    522                 static const SK_OT_ULONG US_437Mask = SkTEndian_SwapBE32(1 << (63 - 32));
    523             };
    524             SK_OT_ULONG value[2];
    525         } raw;
    526     } ulCodePageRange;
    527     //version2
    528     SK_OT_SHORT sxHeight;
    529     SK_OT_SHORT sCapHeight;
    530     SK_OT_USHORT usDefaultChar;
    531     SK_OT_USHORT usBreakChar;
    532     SK_OT_USHORT usMaxContext;
    533 };
    534 
    535 #pragma pack(pop)
    536 
    537 
    538 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2_V2) == 96, sizeof_SkOTTableOS2_V2_not_96);
    539 
    540 #endif
    541