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

Side by Side Diff: gm/constcolorprocessor.cpp

Issue 1308503002: Create separate entry points for the various flavors of drawRect (Closed) Base URL: https://skia.googlesource.com/skia.git@fptexturetestdebug2
Patch Set: rebase onto master Created 5 years, 4 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/bigrrectaaeffect.cpp ('k') | gm/rrects.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 2015 Google Inc. 3 * Copyright 2015 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 // This test only works with the GPU backend. 9 // This test only works with the GPU backend.
10 10
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 &grPaint)); 108 &grPaint));
109 109
110 GrConstColorProcessor::InputMode mode = (GrConstColorProcess or::InputMode) m; 110 GrConstColorProcessor::InputMode mode = (GrConstColorProcess or::InputMode) m;
111 GrColor color = kColors[procColor]; 111 GrColor color = kColors[procColor];
112 SkAutoTUnref<GrFragmentProcessor> fp(GrConstColorProcessor:: Create(color, mode)); 112 SkAutoTUnref<GrFragmentProcessor> fp(GrConstColorProcessor:: Create(color, mode));
113 113
114 GrClip clip; 114 GrClip clip;
115 GrPipelineBuilder pipelineBuilder(grPaint, rt, clip); 115 GrPipelineBuilder pipelineBuilder(grPaint, rt, clip);
116 pipelineBuilder.addColorProcessor(fp); 116 pipelineBuilder.addColorProcessor(fp);
117 117
118 tt.target()->drawSimpleRect(pipelineBuilder, 118 tt.target()->drawBWRect(pipelineBuilder,
119 grPaint.getColor(), 119 grPaint.getColor(),
120 viewMatrix, 120 viewMatrix,
121 renderRect); 121 renderRect);
122 122
123 // Draw labels for the input to the processor and the proces sor to the right of 123 // Draw labels for the input to the processor and the proces sor to the right of
124 // the test rect. The input label appears above the processo r label. 124 // the test rect. The input label appears above the processo r label.
125 SkPaint labelPaint; 125 SkPaint labelPaint;
126 sk_tool_utils::set_portable_typeface(&labelPaint); 126 sk_tool_utils::set_portable_typeface(&labelPaint);
127 labelPaint.setAntiAlias(true); 127 labelPaint.setAntiAlias(true);
128 labelPaint.setTextSize(10.f); 128 labelPaint.setTextSize(10.f);
129 SkString inputLabel; 129 SkString inputLabel;
130 inputLabel.set("Input: "); 130 inputLabel.set("Input: ");
131 if (paintType >= SK_ARRAY_COUNT(kPaintColors)) { 131 if (paintType >= SK_ARRAY_COUNT(kPaintColors)) {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 typedef GM INHERITED; 189 typedef GM INHERITED;
190 }; 190 };
191 191
192 const SkScalar ConstColorProcessor::kPad = 10.f; 192 const SkScalar ConstColorProcessor::kPad = 10.f;
193 const SkScalar ConstColorProcessor::kRectSize = 20.f; 193 const SkScalar ConstColorProcessor::kRectSize = 20.f;
194 194
195 DEF_GM( return SkNEW(ConstColorProcessor); ) 195 DEF_GM( return SkNEW(ConstColorProcessor); )
196 } 196 }
197 197
198 #endif 198 #endif
OLDNEW
« no previous file with comments | « gm/bigrrectaaeffect.cpp ('k') | gm/rrects.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698