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

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

Issue 858343002: Rename GrOptDrawState to GrPipeline and GrDrawState to GrPipelineBuilder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: more nits Created 5 years, 11 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/GrSWMaskHelper.cpp ('k') | src/gpu/GrSoftwarePathRenderer.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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef GrSoftwarePathRenderer_DEFINED 9 #ifndef GrSoftwarePathRenderer_DEFINED
10 #define GrSoftwarePathRenderer_DEFINED 10 #define GrSoftwarePathRenderer_DEFINED
11 11
12 #include "GrPathRenderer.h" 12 #include "GrPathRenderer.h"
13 13
14 class GrContext; 14 class GrContext;
15 15
16 /** 16 /**
17 * This class uses the software side to render a path to an SkBitmap and 17 * This class uses the software side to render a path to an SkBitmap and
18 * then uploads the result to the gpu 18 * then uploads the result to the gpu
19 */ 19 */
20 class GrSoftwarePathRenderer : public GrPathRenderer { 20 class GrSoftwarePathRenderer : public GrPathRenderer {
21 public: 21 public:
22 GrSoftwarePathRenderer(GrContext* context) 22 GrSoftwarePathRenderer(GrContext* context)
23 : fContext(context) { 23 : fContext(context) {
24 } 24 }
25 25
26 virtual bool canDrawPath(const GrDrawTarget*, 26 virtual bool canDrawPath(const GrDrawTarget*,
27 const GrDrawState*, 27 const GrPipelineBuilder*,
28 const SkMatrix& viewMatrix, 28 const SkMatrix& viewMatrix,
29 const SkPath&, 29 const SkPath&,
30 const SkStrokeRec&, 30 const SkStrokeRec&,
31 bool antiAlias) const SK_OVERRIDE; 31 bool antiAlias) const SK_OVERRIDE;
32 protected: 32 protected:
33 virtual StencilSupport onGetStencilSupport(const GrDrawTarget*, 33 virtual StencilSupport onGetStencilSupport(const GrDrawTarget*,
34 const GrDrawState*, 34 const GrPipelineBuilder*,
35 const SkPath&, 35 const SkPath&,
36 const SkStrokeRec&) const SK_OVER RIDE; 36 const SkStrokeRec&) const SK_OVER RIDE;
37 37
38 virtual bool onDrawPath(GrDrawTarget*, 38 virtual bool onDrawPath(GrDrawTarget*,
39 GrDrawState*, 39 GrPipelineBuilder*,
40 GrColor, 40 GrColor,
41 const SkMatrix& viewMatrix, 41 const SkMatrix& viewMatrix,
42 const SkPath&, 42 const SkPath&,
43 const SkStrokeRec&, 43 const SkStrokeRec&,
44 bool antiAlias) SK_OVERRIDE; 44 bool antiAlias) SK_OVERRIDE;
45 45
46 private: 46 private:
47 GrContext* fContext; 47 GrContext* fContext;
48 48
49 typedef GrPathRenderer INHERITED; 49 typedef GrPathRenderer INHERITED;
50 }; 50 };
51 51
52 #endif 52 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrSWMaskHelper.cpp ('k') | src/gpu/GrSoftwarePathRenderer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698