aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/text/GrTextUtils.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2016-01-20 06:36:09 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-20 06:36:09 -0800
commit0d2199b3db21e1f22cf328ca090aa0c8abc9067f (patch)
treefbbd0559fad3a5227023c16ba9d4b087192a22b6 /src/gpu/text/GrTextUtils.h
parente179a9167f71dfc41668b05d40082aae76367fa6 (diff)
Move distance field text positioning into GrTextUtils
Diffstat (limited to 'src/gpu/text/GrTextUtils.h')
-rw-r--r--src/gpu/text/GrTextUtils.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/gpu/text/GrTextUtils.h b/src/gpu/text/GrTextUtils.h
index 0996f655a3..d6b7e94ea2 100644
--- a/src/gpu/text/GrTextUtils.h
+++ b/src/gpu/text/GrTextUtils.h
@@ -18,6 +18,7 @@ class GrClip;
class GrContext;
class GrDrawContext;
class GrFontScaler;
+class GrShaderCaps;
class SkGlyph;
class SkMatrix;
struct SkIRect;
@@ -48,6 +49,24 @@ public:
const SkScalar pos[], int scalarsPerPosition,
const SkPoint& offset);
+ // functions for appending distance field text
+ static bool CanDrawAsDistanceFields(const SkPaint& skPaint, const SkMatrix& viewMatrix,
+ const SkSurfaceProps& props, const GrShaderCaps& caps);
+
+ static void DrawDFText(GrAtlasTextBlob* blob, int runIndex,
+ GrBatchFontCache*, const SkSurfaceProps&,
+ const SkPaint& skPaint, GrColor color,
+ const SkMatrix& viewMatrix,
+ const char text[], size_t byteLength,
+ SkScalar x, SkScalar y);
+
+ static void DrawDFPosText(GrAtlasTextBlob* blob, int runIndex,
+ GrBatchFontCache*, const SkSurfaceProps&, const SkPaint&,
+ GrColor color, const SkMatrix& viewMatrix,
+ const char text[], size_t byteLength,
+ const SkScalar pos[], int scalarsPerPosition,
+ const SkPoint& offset);
+
// Functions for drawing text as paths
static void DrawTextAsPath(GrContext*, GrDrawContext*, const GrClip& clip,
const SkPaint& origPaint, const SkMatrix& viewMatrix,
@@ -63,9 +82,20 @@ public:
const SkScalar pos[], int scalarsPerPosition,
const SkPoint& offset, const SkIRect& clipBounds);
private:
+ static void InitDistanceFieldPaint(GrAtlasTextBlob* blob,
+ SkPaint* skPaint,
+ SkScalar* textRatio,
+ const SkMatrix& viewMatrix);
+
static void BmpAppendGlyph(GrAtlasTextBlob*, int runIndex, GrBatchFontCache*,
GrBatchTextStrike**, const SkGlyph&, int left, int top,
GrColor color, GrFontScaler*);
+
+ static bool DfAppendGlyph(GrAtlasTextBlob*, int runIndex, GrBatchFontCache*,
+ GrBatchTextStrike**, const SkGlyph&,
+ SkScalar sx, SkScalar sy, GrColor color,
+ GrFontScaler* scaler,
+ SkScalar textRatio, const SkMatrix& viewMatrix);
};
#endif