Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: include/core/SkPaint.h

Issue 18386006: add extra flag (currently unused) for high quality downsampling (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/PictureRenderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 kBicubicFilterBitmap_Flag = 0x4000, // temporary flag
112 kHighQualityDownsampleBitmap_Flag = 0x8000, // temporary flag
112 113
113 // when adding extra flags, note that the fFlags member is specified 114 // when adding extra flags, note that the fFlags member is specified
114 // with a bit-width and you'll have to expand it. 115 // with a bit-width and you'll have to expand it.
115 116
116 kAllFlags = 0x7FFF 117 kAllFlags = 0xFFFF
117 }; 118 };
118 119
119 /** Return the paint's flags. Use the Flag enum to test flag values. 120 /** 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) 121 @return the paint's flags (see enums ending in _Flag for bit masks)
121 */ 122 */
122 uint32_t getFlags() const { return fFlags; } 123 uint32_t getFlags() const { return fFlags; }
123 124
124 /** Set the paint's flags. Use the Flag enum to specific flag values. 125 /** Set the paint's flags. Use the Flag enum to specific flag values.
125 @param flags The new flag bits for the paint (see Flags enum) 126 @param flags The new flag bits for the paint (see Flags enum)
126 */ 127 */
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 #ifdef SK_BUILD_FOR_ANDROID 1059 #ifdef SK_BUILD_FOR_ANDROID
1059 SkPaintOptionsAndroid fPaintOptionsAndroid; 1060 SkPaintOptionsAndroid fPaintOptionsAndroid;
1060 1061
1061 // In order for the == operator to work properly this must be the last field 1062 // In order for the == operator to work properly this must be the last field
1062 // in the struct so that we can do a memcmp to this field's offset. 1063 // in the struct so that we can do a memcmp to this field's offset.
1063 uint32_t fGenerationID; 1064 uint32_t fGenerationID;
1064 #endif 1065 #endif
1065 }; 1066 };
1066 1067
1067 #endif 1068 #endif
OLDNEW
« no previous file with comments | « no previous file | tools/PictureRenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698