OLD | NEW |
---|---|
1 | 1 |
2 | 2 |
3 /* | 3 /* |
4 * Copyright 2006 The Android Open Source Project | 4 * Copyright 2006 The Android Open Source Project |
5 * | 5 * |
6 * Use of this source code is governed by a BSD-style license that can be | 6 * Use of this source code is governed by a BSD-style license that can be |
7 * found in the LICENSE file. | 7 * found in the LICENSE file. |
8 */ | 8 */ |
9 | 9 |
10 | 10 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
101 kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text | 101 kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text |
102 kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text | 102 kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text |
103 kLinearText_Flag = 0x40, //!< mask to enable linear-text | 103 kLinearText_Flag = 0x40, //!< mask to enable linear-text |
104 kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positi oning | 104 kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positi oning |
105 kDevKernText_Flag = 0x100, //!< mask to enable device kerning text | 105 kDevKernText_Flag = 0x100, //!< mask to enable device kerning text |
106 kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph rende rering | 106 kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph rende rering |
107 kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap st rikes | 107 kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap st rikes |
108 kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter | 108 kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter |
109 kVerticalText_Flag = 0x1000, | 109 kVerticalText_Flag = 0x1000, |
110 kGenA8FromLCD_Flag = 0x2000, // hack for GDI -- do not use if you can help it | 110 kGenA8FromLCD_Flag = 0x2000, // hack for GDI -- do not use if you can help it |
111 kBicubicFilterBitmap_Flag = 0x4000, // temporary flag | 111 kHighQualityFilterBitmap_Flag = 0x4000, // temporary flag |
reed1
2013/06/18 20:21:21
Lets skip this change, or at most make it an alias
humper
2013/06/19 20:49:26
Done.
| |
112 | 112 |
113 // when adding extra flags, note that the fFlags member is specified | 113 // when adding extra flags, note that the fFlags member is specified |
114 // with a bit-width and you'll have to expand it. | 114 // with a bit-width and you'll have to expand it. |
115 | 115 |
116 kAllFlags = 0x7FFF | 116 kAllFlags = 0x7FFF |
117 }; | 117 }; |
118 | 118 |
119 /** Return the paint's flags. Use the Flag enum to test flag values. | 119 /** Return the paint's flags. Use the Flag enum to test flag values. |
120 @return the paint's flags (see enums ending in _Flag for bit masks) | 120 @return the paint's flags (see enums ending in _Flag for bit masks) |
121 */ | 121 */ |
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1057 #ifdef SK_BUILD_FOR_ANDROID | 1057 #ifdef SK_BUILD_FOR_ANDROID |
1058 SkPaintOptionsAndroid fPaintOptionsAndroid; | 1058 SkPaintOptionsAndroid fPaintOptionsAndroid; |
1059 | 1059 |
1060 // In order for the == operator to work properly this must be the last field | 1060 // In order for the == operator to work properly this must be the last field |
1061 // in the struct so that we can do a memcmp to this field's offset. | 1061 // in the struct so that we can do a memcmp to this field's offset. |
1062 uint32_t fGenerationID; | 1062 uint32_t fGenerationID; |
1063 #endif | 1063 #endif |
1064 }; | 1064 }; |
1065 | 1065 |
1066 #endif | 1066 #endif |
OLD | NEW |