aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkScalerContext.h
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-11-10 15:20:49 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-11-10 15:20:49 +0000
commit830a23e39bb4a126e573940cd6e354732e295b10 (patch)
tree342bf79695ce04ba6f16a05fcb6d2716fd3d8294 /include/core/SkScalerContext.h
parenta2092aab4bc086cb7f0663775b37341207b22911 (diff)
add vertical-text bit to paint (not supported yet)
check-point for using freetype on mac (not enabled yet) git-svn-id: http://skia.googlecode.com/svn/trunk@2657 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkScalerContext.h')
-rw-r--r--include/core/SkScalerContext.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/core/SkScalerContext.h b/include/core/SkScalerContext.h
index 71826e8b45..c9fb83b2c4 100644
--- a/include/core/SkScalerContext.h
+++ b/include/core/SkScalerContext.h
@@ -171,13 +171,14 @@ public:
kEmbolden_Flag = 0x80,
kSubpixelPositioning_Flag = 0x100,
kAutohinting_Flag = 0x200,
+ kVertical_Flag = 0x400,
// these should only ever be set if fMaskFormat is LCD16 or LCD32
- kLCD_Vertical_Flag = 0x400, // else Horizontal
- kLCD_BGROrder_Flag = 0x800, // else RGB order
+ kLCD_Vertical_Flag = 0x0800, // else Horizontal
+ kLCD_BGROrder_Flag = 0x1000, // else RGB order
// experimental
- kForceAA_Flag = 0x1000
+ kForceAA_Flag = 0x2000
};
private:
enum {