OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2016 Google Inc. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 #ifndef GrPathRenderingDrawContext_DEFINED | |
9 #define GrPathRenderingDrawContext_DEFINED | |
10 | |
11 #include "GrDrawContext.h" | |
12 | |
13 class GrStencilAndCoverTextContext; | |
14 | |
15 class GrPathRenderingDrawContext : public GrDrawContext { | |
16 public: | |
17 void drawText(const GrClip&, const GrPaint&, const SkPaint&, | |
18 const SkMatrix& viewMatrix, const char text[], size_t byteLeng th, | |
19 SkScalar x, SkScalar y, const SkIRect& clipBounds) override; | |
20 void drawPosText(const GrClip&, const GrPaint&, const SkPaint&, | |
21 const SkMatrix& viewMatrix, const char text[], size_t byteL ength, | |
22 const SkScalar pos[], int scalarsPerPosition, | |
23 const SkPoint& offset, const SkIRect& clipBounds) override; | |
24 void drawTextBlob(const GrClip&, const SkPaint&, | |
25 const SkMatrix& viewMatrix, const SkTextBlob*, | |
26 SkScalar x, SkScalar y, | |
27 SkDrawFilter*, const SkIRect& clipBounds) override; | |
28 protected: | |
29 GrPathRenderingDrawContext(GrContext* ctx, GrDrawingManager* mgr, GrRenderTa rget* rt, | |
30 const SkSurfaceProps* surfaceProps, GrAuditTrail* at, | |
31 GrSingleOwner* so) | |
32 : INHERITED(ctx, mgr, rt, surfaceProps, at, so) | |
33 , fTextContext(nullptr) {} | |
34 | |
35 private: | |
robertphillips
2016/02/16 17:05:11
fStencilAndCoverTextContext ?
| |
36 GrStencilAndCoverTextContext* fTextContext; | |
37 | |
38 friend class GrDrawingManager; // for ctor | |
39 | |
40 typedef GrDrawContext INHERITED; | |
41 }; | |
42 | |
43 #endif | |
OLD | NEW |