From 8dc58edd71c11f232860724dfa3b566895478034 Mon Sep 17 00:00:00 2001 From: jvanverth Date: Wed, 18 Mar 2015 14:46:38 -0700 Subject: Ensure that we use different glyph entries for regular and df text. Currently if we switch between regular text and df text while using the same GrContext, they may use the same entry in the Ganesh font cache, which is incorrect. This change ensures that they will have different entries. Review URL: https://codereview.chromium.org/1020593003 --- src/gpu/GrGlyph.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src/gpu/GrGlyph.h') diff --git a/src/gpu/GrGlyph.h b/src/gpu/GrGlyph.h index 0e534d694a..108f2f0fe7 100644 --- a/src/gpu/GrGlyph.h +++ b/src/gpu/GrGlyph.h @@ -23,6 +23,11 @@ class GrPlot; - failed to get metrics */ struct GrGlyph { + enum MaskStyle { + kCoverage_MaskStyle, + kDistance_MaskStyle + }; + typedef uint32_t PackedID; GrPlot* fPlot; @@ -60,10 +65,11 @@ struct GrGlyph { return (pos >> 14) & 3; } - static inline PackedID Pack(uint16_t glyphID, SkFixed x, SkFixed y) { + static inline PackedID Pack(uint16_t glyphID, SkFixed x, SkFixed y, MaskStyle ms) { x = ExtractSubPixelBitsFromFixed(x); y = ExtractSubPixelBitsFromFixed(y); - return (x << 18) | (y << 16) | glyphID; + int dfFlag = (ms == kDistance_MaskStyle) ? 0x1 : 0x0; + return (dfFlag << 20) | (x << 18) | (y << 16) | glyphID; } static inline SkFixed UnpackFixedX(PackedID packed) { @@ -74,6 +80,10 @@ struct GrGlyph { return ((packed >> 16) & 3) << 14; } + static inline MaskStyle UnpackMaskStyle(PackedID packed) { + return ((packed >> 20) & 1) ? kDistance_MaskStyle : kCoverage_MaskStyle; + } + static inline uint16_t UnpackID(PackedID packed) { return (uint16_t)packed; } -- cgit v1.2.3