diff options
Diffstat (limited to 'include/core/SkFontHost.h')
-rw-r--r-- | include/core/SkFontHost.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/core/SkFontHost.h b/include/core/SkFontHost.h index cb56772..ec34583 100644 --- a/include/core/SkFontHost.h +++ b/include/core/SkFontHost.h @@ -254,10 +254,14 @@ public: Note, if you change this after startup, you'll need to flush the glyph cache because it'll have the wrong type of masks cached. - */ + + kNONE_LCDOrder means that the subpixel elements are not spatially + separated in any usable fashion. + */ enum LCDOrder { kRGB_LCDOrder = 0, //!< this is the default kBGR_LCDOrder = 1, + kNONE_LCDOrder = 2, }; static void SetSubpixelOrder(LCDOrder order); |