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

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

Issue 2066993003: Begin instanced rendering for simple shapes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rix perf regressions Created 4 years, 5 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/GrDrawContext.cpp ('k') | src/gpu/GrDrawTarget.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 2016 Google Inc. 2 * Copyright 2016 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 GrDrawContextPriv_DEFINED 8 #ifndef GrDrawContextPriv_DEFINED
9 #define GrDrawContextPriv_DEFINED 9 #define GrDrawContextPriv_DEFINED
10 10
11 #include "GrDrawContext.h" 11 #include "GrDrawContext.h"
12 #include "GrDrawTarget.h"
12 #include "GrPathRendering.h" 13 #include "GrPathRendering.h"
13 14
14 class GrFixedClip; 15 class GrFixedClip;
15 class GrPath; 16 class GrPath;
16 struct GrUserStencilSettings; 17 struct GrUserStencilSettings;
17 18
18 /** Class that adds methods to GrDrawContext that are only intended for use inte rnal to Skia. 19 /** Class that adds methods to GrDrawContext that are only intended for use inte rnal to Skia.
19 This class is purely a privileged window into GrDrawContext. It should never have additional 20 This class is purely a privileged window into GrDrawContext. It should never have additional
20 data members or virtual methods. */ 21 data members or virtual methods. */
21 class GrDrawContextPriv { 22 class GrDrawContextPriv {
22 public: 23 public:
24 gr_instanced::InstancedRendering* accessInstancedRendering() const {
25 return fDrawContext->getDrawTarget()->instancedRendering();
26 }
27
23 void clearStencilClip(const SkIRect& rect, bool insideClip); 28 void clearStencilClip(const SkIRect& rect, bool insideClip);
24 29
25 void stencilRect(const GrFixedClip& clip, 30 void stencilRect(const GrFixedClip& clip,
26 const GrUserStencilSettings* ss, 31 const GrUserStencilSettings* ss,
27 bool useHWAA, 32 bool useHWAA,
28 const SkMatrix& viewMatrix, 33 const SkMatrix& viewMatrix,
29 const SkRect& rect); 34 const SkRect& rect);
30 35
31 void stencilPath(const GrPipelineBuilder&, 36 void stencilPath(const GrPipelineBuilder&,
32 const GrClip&, 37 const GrClip&,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 friend class GrDrawContext; // to construct/copy this type. 74 friend class GrDrawContext; // to construct/copy this type.
70 }; 75 };
71 76
72 inline GrDrawContextPriv GrDrawContext::drawContextPriv() { return GrDrawContext Priv(this); } 77 inline GrDrawContextPriv GrDrawContext::drawContextPriv() { return GrDrawContext Priv(this); }
73 78
74 inline const GrDrawContextPriv GrDrawContext::drawContextPriv () const { 79 inline const GrDrawContextPriv GrDrawContext::drawContextPriv () const {
75 return GrDrawContextPriv(const_cast<GrDrawContext*>(this)); 80 return GrDrawContextPriv(const_cast<GrDrawContext*>(this));
76 } 81 }
77 82
78 #endif 83 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrDrawContext.cpp ('k') | src/gpu/GrDrawTarget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698