aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkFont.h
diff options
context:
space:
mode:
authorGravatar Ben Wagner <bungeman@google.com>2018-05-09 16:00:41 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-09 21:27:11 +0000
commitd813f9cdc75879639b990b2068deb5a755954e58 (patch)
treef4ca8292d4adf82eb96c5fcafa276d73825656dc /include/core/SkFont.h
parent30a067cbe6bede24a1b0fd0b4400004926ef2802 (diff)
Remove SkPaint::Flags::kDevKernFlag.
It isn't used any more. Change-Id: I79fbbac13bb2595da0ae0cea7e42bca8fcccd8e8 Reviewed-on: https://skia-review.googlesource.com/127127 Commit-Queue: Ben Wagner <bungeman@google.com> Reviewed-by: Herb Derby <herb@google.com>
Diffstat (limited to 'include/core/SkFont.h')
-rw-r--r--include/core/SkFont.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/core/SkFont.h b/include/core/SkFont.h
index 48a3d99507..6aba230854 100644
--- a/include/core/SkFont.h
+++ b/include/core/SkFont.h
@@ -29,12 +29,9 @@ enum SkTextEncoding {
enum Flags {
kAntiAlias_Flag = 0x01, //!< mask to enable antialiasing
kDither_Flag = 0x04, //!< mask to enable dithering
- kUnderlineText_Flag = 0x08, //!< mask to enable underline text
- kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text
kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text
kLinearText_Flag = 0x40, //!< mask to enable linear-text
kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positioning
- kDevKernText_Flag = 0x100, //!< mask to enable device kerning text
kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph renderering
kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap strikes
kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter
@@ -46,7 +43,6 @@ enum SkTextEncoding {
kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text
kLinearText_Flag = 0x40, //!< mask to enable linear-text
kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positioning
- kDevKernText_Flag = 0x100, //!< mask to enable device kerning text
kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph renderering
kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap strikes
kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter
@@ -56,8 +52,6 @@ enum SkTextEncoding {
kAntiAlias_Flag = 0x01, //!< mask to enable antialiasing
kDither_Flag = 0x04, //!< mask to enable dithering
- kUnderlineText_Flag = 0x08, //!< mask to enable underline text
- kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text
3. Antialiasing
@@ -106,7 +100,6 @@ public:
kVertical_Flag = 1 << 4,
kEmbolden_Flag = 1 << 6,
- kDevKern_Flag = 1 << 7, // ifdef ANDROID ?
};
enum MaskType {
@@ -141,7 +134,6 @@ public:
bool isEnableAutoHints() const { return SkToBool(fFlags & kEnableAutoHints_Flag); }
bool isEnableByteCodeHints() const { return SkToBool(fFlags & kEnableByteCodeHints_Flag); }
bool isUseNonLinearMetrics() const { return SkToBool(fFlags & kUseNonlinearMetrics_Flag); }
- bool isDevKern() const { return SkToBool(fFlags & kDevKern_Flag); }
int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding,
SkGlyphID glyphs[], int maxGlyphCount) const;