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

Side by Side Diff: gm/rrects.cpp

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 | « gm/convexpolyeffect.cpp ('k') | gm/texturedomaineffect.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 2012 Google Inc. 2 * Copyright 2012 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 #include "gm.h" 8 #include "gm.h"
9 #if SK_SUPPORT_GPU 9 #if SK_SUPPORT_GPU
10 #include "GrTest.h" 10 #include "GrTest.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et; 119 GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et;
120 SkAutoTUnref<GrFragmentProcessor> fp(GrRRectEffect::Crea te(edgeType, 120 SkAutoTUnref<GrFragmentProcessor> fp(GrRRectEffect::Crea te(edgeType,
121 rrect)); 121 rrect));
122 if (fp) { 122 if (fp) {
123 drawState.addCoverageProcessor(fp); 123 drawState.addCoverageProcessor(fp);
124 drawState.setRenderTarget(rt); 124 drawState.setRenderTarget(rt);
125 125
126 SkRect bounds = rrect.getBounds(); 126 SkRect bounds = rrect.getBounds();
127 bounds.outset(2.f, 2.f); 127 bounds.outset(2.f, 2.f);
128 128
129 tt.target()->drawSimpleRect(&drawState, 0xff000000, bounds); 129 tt.target()->drawSimpleRect(&drawState, 0xff000000, SkMatrix::I(),
130 bounds);
130 } else { 131 } else {
131 drew = false; 132 drew = false;
132 } 133 }
133 #endif 134 #endif
134 } else if (kBW_Clip_Type == fType || kAA_Clip_Type == fType) { 135 } else if (kBW_Clip_Type == fType || kAA_Clip_Type == fType) {
135 bool aaClip = (kAA_Clip_Type == fType); 136 bool aaClip = (kAA_Clip_Type == fType);
136 canvas->clipRRect(fRRects[curRRect], SkRegion::kReplace_ Op, aaClip); 137 canvas->clipRRect(fRRects[curRRect], SkRegion::kReplace_ Op, aaClip);
137 canvas->drawRect(kMaxTileBound, paint); 138 canvas->drawRect(kMaxTileBound, paint);
138 } else { 139 } else {
139 canvas->drawRRect(fRRects[curRRect], paint); 140 canvas->drawRRect(fRRects[curRRect], paint);
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 261
261 DEF_GM( return new RRectGM(RRectGM::kAA_Draw_Type); ) 262 DEF_GM( return new RRectGM(RRectGM::kAA_Draw_Type); )
262 DEF_GM( return new RRectGM(RRectGM::kBW_Draw_Type); ) 263 DEF_GM( return new RRectGM(RRectGM::kBW_Draw_Type); )
263 DEF_GM( return new RRectGM(RRectGM::kAA_Clip_Type); ) 264 DEF_GM( return new RRectGM(RRectGM::kAA_Clip_Type); )
264 DEF_GM( return new RRectGM(RRectGM::kBW_Clip_Type); ) 265 DEF_GM( return new RRectGM(RRectGM::kBW_Clip_Type); )
265 #if SK_SUPPORT_GPU 266 #if SK_SUPPORT_GPU
266 DEF_GM( return new RRectGM(RRectGM::kEffect_Type); ) 267 DEF_GM( return new RRectGM(RRectGM::kEffect_Type); )
267 #endif 268 #endif
268 269
269 } 270 }
OLDNEW
« no previous file with comments | « gm/convexpolyeffect.cpp ('k') | gm/texturedomaineffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698