Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: src/gpu/GrStencilAndCoverTextContext.h

Issue 1157773003: Move SkGpuDevice::internalDrawPath to GrBlurUtils::drawPathWithMaskFilter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: more cleanup Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrContext.cpp ('k') | src/gpu/GrStencilAndCoverTextContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrStencilAndCoverTextContext_DEFINED 8 #ifndef GrStencilAndCoverTextContext_DEFINED
9 #define GrStencilAndCoverTextContext_DEFINED 9 #define GrStencilAndCoverTextContext_DEFINED
10 10
11 #include "GrTextContext.h" 11 #include "GrTextContext.h"
12 #include "GrDrawTarget.h" 12 #include "GrDrawTarget.h"
13 #include "GrStrokeInfo.h" 13 #include "GrStrokeInfo.h"
14 14
15 class GrTextStrike; 15 class GrTextStrike;
16 class GrPath; 16 class GrPath;
17 class GrPathRange; 17 class GrPathRange;
18 18
19 /* 19 /*
20 * This class implements text rendering using stencil and cover path rendering 20 * This class implements text rendering using stencil and cover path rendering
21 * (by the means of GrDrawTarget::drawPath). 21 * (by the means of GrDrawTarget::drawPath).
22 * This class exposes the functionality through GrTextContext interface. 22 * This class exposes the functionality through GrTextContext interface.
23 */ 23 */
24 class GrStencilAndCoverTextContext : public GrTextContext { 24 class GrStencilAndCoverTextContext : public GrTextContext {
25 public: 25 public:
26 static GrStencilAndCoverTextContext* Create(GrContext*, SkGpuDevice*, 26 static GrStencilAndCoverTextContext* Create(GrContext*, const SkDeviceProper ties&);
27 const SkDeviceProperties&);
28 27
29 virtual ~GrStencilAndCoverTextContext(); 28 virtual ~GrStencilAndCoverTextContext();
30 29
31 private: 30 private:
32 static const int kGlyphBufferSize = 1024; 31 static const int kGlyphBufferSize = 1024;
33 32
34 enum RenderMode { 33 enum RenderMode {
35 /** 34 /**
36 * This is the render mode used by drawText(), which is mainly used by 35 * This is the render mode used by drawText(), which is mainly used by
37 * the Skia unit tests. It tries match the other text backends exactly, 36 * the Skia unit tests. It tries match the other text backends exactly,
(...skipping 23 matching lines...) Expand all
61 GrStrokeInfo fStroke; 60 GrStrokeInfo fStroke;
62 uint16_t fGlyphIndices[kGlyphBuff erSize]; 61 uint16_t fGlyphIndices[kGlyphBuff erSize];
63 SkPoint fGlyphPositions[kGlyphBu fferSize]; 62 SkPoint fGlyphPositions[kGlyphBu fferSize];
64 int fQueuedGlyphCount; 63 int fQueuedGlyphCount;
65 int fFallbackGlyphsIdx; 64 int fFallbackGlyphsIdx;
66 SkMatrix fContextInitialMatrix; 65 SkMatrix fContextInitialMatrix;
67 SkMatrix fViewMatrix; 66 SkMatrix fViewMatrix;
68 SkMatrix fLocalMatrix; 67 SkMatrix fLocalMatrix;
69 bool fUsingDeviceSpaceGlyphs; 68 bool fUsingDeviceSpaceGlyphs;
70 69
71 GrStencilAndCoverTextContext(GrContext*, SkGpuDevice*, const SkDevicePropert ies&); 70 GrStencilAndCoverTextContext(GrContext*, const SkDeviceProperties&);
72 71
73 bool canDraw(const GrRenderTarget*, const GrClip&, const GrPaint&, 72 bool canDraw(const GrRenderTarget*, const GrClip&, const GrPaint&,
74 const SkPaint&, const SkMatrix& viewMatrix) override; 73 const SkPaint&, const SkMatrix& viewMatrix) override;
75 74
76 void onDrawText(GrRenderTarget*, const GrClip&, const GrPaint&, const SkPain t&, 75 void onDrawText(GrDrawContext*, GrRenderTarget*, const GrClip&, const GrPain t&, const SkPaint&,
77 const SkMatrix& viewMatrix, 76 const SkMatrix& viewMatrix,
78 const char text[], size_t byteLength, 77 const char text[], size_t byteLength,
79 SkScalar x, SkScalar y, const SkIRect& regionClipBounds) ove rride; 78 SkScalar x, SkScalar y, const SkIRect& regionClipBounds) ove rride;
80 void onDrawPosText(GrRenderTarget*, const GrClip&, const GrPaint&, const SkP aint&, 79 void onDrawPosText(GrDrawContext*, GrRenderTarget*, const GrClip&, const GrP aint&, const SkPaint&,
81 const SkMatrix& viewMatrix, 80 const SkMatrix& viewMatrix,
82 const char text[], size_t byteLength, 81 const char text[], size_t byteLength,
83 const SkScalar pos[], int scalarsPerPosition, 82 const SkScalar pos[], int scalarsPerPosition,
84 const SkPoint& offset, const SkIRect& regionClipBounds) o verride; 83 const SkPoint& offset, const SkIRect& regionClipBounds) o verride;
85 84
86 void init(GrRenderTarget*, const GrClip&, const GrPaint&, const SkPaint&, 85 void init(GrRenderTarget*, const GrClip&, const GrPaint&, const SkPaint&,
87 size_t textByteLength, RenderMode, const SkMatrix& viewMatrix, 86 size_t textByteLength, RenderMode, const SkMatrix& viewMatrix,
88 const SkIRect& regionClipBounds); 87 const SkIRect& regionClipBounds);
89 bool mapToFallbackContext(SkMatrix* inverse); 88 bool mapToFallbackContext(SkMatrix* inverse);
90 void appendGlyph(const SkGlyph&, const SkPoint&); 89 void appendGlyph(GrDrawContext*, const SkGlyph&, const SkPoint&);
91 void flush(); 90 void flush(GrDrawContext*);
92 void finish(); 91 void finish(GrDrawContext*);
93 92
94 }; 93 };
95 94
96 #endif 95 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrContext.cpp ('k') | src/gpu/GrStencilAndCoverTextContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698