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

Side by Side Diff: include/gpu/GrPathRendererChain.h

Issue 815553003: Move ViewMatrix off of drawstate (Closed) Base URL: https://skia.googlesource.com/skia.git@remove-fragment-stage
Patch Set: more cleaning 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 | « include/gpu/GrContext.h ('k') | src/gpu/GrAAConvexPathRenderer.h » ('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 2011 Google Inc. 2 * Copyright 2011 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 GrPathRendererChain_DEFINED 8 #ifndef GrPathRendererChain_DEFINED
9 #define GrPathRendererChain_DEFINED 9 #define GrPathRendererChain_DEFINED
10 10
11 #include "SkRefCnt.h" 11 #include "SkRefCnt.h"
12 #include "SkTArray.h" 12 #include "SkTArray.h"
13 13
14 class GrContext; 14 class GrContext;
15 class GrDrawState; 15 class GrDrawState;
16 class GrDrawTarget; 16 class GrDrawTarget;
17 class GrPathRenderer; 17 class GrPathRenderer;
18 class SkMatrix;
18 class SkPath; 19 class SkPath;
19 class SkStrokeRec; 20 class SkStrokeRec;
20 21
21 /** 22 /**
22 * Keeps track of an ordered list of path renderers. When a path needs to be 23 * Keeps track of an ordered list of path renderers. When a path needs to be
23 * drawn this list is scanned to find the most preferred renderer. To add your 24 * drawn this list is scanned to find the most preferred renderer. To add your
24 * path renderer to the list implement the GrPathRenderer::AddPathRenderers 25 * path renderer to the list implement the GrPathRenderer::AddPathRenderers
25 * function. 26 * function.
26 */ 27 */
27 class GrPathRendererChain : public SkRefCnt { 28 class GrPathRendererChain : public SkRefCnt {
(...skipping 23 matching lines...) Expand all
51 kStencilAndColor_DrawType, // draw the stencil and color buffer , no AA 52 kStencilAndColor_DrawType, // draw the stencil and color buffer , no AA
52 kStencilAndColorAntiAlias_DrawType // draw the stencil and color buffer , with partial 53 kStencilAndColorAntiAlias_DrawType // draw the stencil and color buffer , with partial
53 // coverage AA. 54 // coverage AA.
54 }; 55 };
55 /** Returns a GrPathRenderer compatible with the request if one is available . If the caller 56 /** Returns a GrPathRenderer compatible with the request if one is available . If the caller
56 is drawing the path to the stencil buffer then stencilSupport can be use d to determine 57 is drawing the path to the stencil buffer then stencilSupport can be use d to determine
57 whether the path can be rendered with arbitrary stencil rules or not. Se e comments on 58 whether the path can be rendered with arbitrary stencil rules or not. Se e comments on
58 StencilSupport in GrPathRenderer.h. */ 59 StencilSupport in GrPathRenderer.h. */
59 GrPathRenderer* getPathRenderer(const GrDrawTarget* target, 60 GrPathRenderer* getPathRenderer(const GrDrawTarget* target,
60 const GrDrawState*, 61 const GrDrawState*,
62 const SkMatrix& viewMatrix,
61 const SkPath& path, 63 const SkPath& path,
62 const SkStrokeRec& rec, 64 const SkStrokeRec& rec,
63 DrawType drawType, 65 DrawType drawType,
64 StencilSupport* stencilSupport); 66 StencilSupport* stencilSupport);
65 67
66 private: 68 private:
67 GrPathRendererChain(); 69 GrPathRendererChain();
68 70
69 void init(); 71 void init();
70 72
71 enum { 73 enum {
72 kPreAllocCount = 8, 74 kPreAllocCount = 8,
73 }; 75 };
74 bool fInit; 76 bool fInit;
75 GrContext* fOwner; 77 GrContext* fOwner;
76 SkSTArray<kPreAllocCount, GrPathRenderer*, true> fChain; 78 SkSTArray<kPreAllocCount, GrPathRenderer*, true> fChain;
77 79
78 typedef SkRefCnt INHERITED; 80 typedef SkRefCnt INHERITED;
79 }; 81 };
80 82
81 #endif 83 #endif
OLDNEW
« no previous file with comments | « include/gpu/GrContext.h ('k') | src/gpu/GrAAConvexPathRenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698