Index: include/core/SkTypeface.h |
diff --git a/include/core/SkTypeface.h b/include/core/SkTypeface.h |
index 83008d3abf1cd7a8215f55e2bd033fb5286d0e0c..30a0903bbd4787f520d1ef96268088f96d1acbe3 100644 |
--- a/include/core/SkTypeface.h |
+++ b/include/core/SkTypeface.h |
@@ -332,11 +332,9 @@ protected: |
// The type of advance data wanted. |
enum PerGlyphInfo { |
kNo_PerGlyphInfo = 0x0, // Don't populate any per glyph info. |
- kHAdvance_PerGlyphInfo = 0x1, // Populate horizontal advance data. |
- kVAdvance_PerGlyphInfo = 0x2, // Populate vertical advance data. |
- kGlyphNames_PerGlyphInfo = 0x4, // Populate glyph names (Type 1 only). |
- kToUnicode_PerGlyphInfo = 0x8 // Populate ToUnicode table, ignored |
- // for Type 1 fonts |
+ kGlyphNames_PerGlyphInfo = 0x1, // Populate glyph names (Type 1 only). |
+ kToUnicode_PerGlyphInfo = 0x2 // Populate ToUnicode table, ignored |
+ // for Type 1 fonts |
}; |
/** uniqueID must be unique and non-zero |