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

Side by Side Diff: gm/samplerstress.cpp

Issue 1829303002: move setshader to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: addressing comments from #8 Created 4 years, 9 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/pictureshader.cpp ('k') | include/core/SkPaint.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 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 #include "SkBlurMaskFilter.h" 9 #include "SkBlurMaskFilter.h"
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 createShader(); 88 createShader();
89 createMaskFilter(); 89 createMaskFilter();
90 90
91 canvas->save(); 91 canvas->save();
92 92
93 // draw a letter "M" with a green & red striped texture and a 93 // draw a letter "M" with a green & red striped texture and a
94 // stipple mask with a round rect soft clip 94 // stipple mask with a round rect soft clip
95 SkPaint paint; 95 SkPaint paint;
96 paint.setAntiAlias(true); 96 paint.setAntiAlias(true);
97 paint.setTextSize(72); 97 paint.setTextSize(72);
98 paint.setShader(fShader.get()); 98 paint.setShader(fShader);
99 paint.setMaskFilter(fMaskFilter.get()); 99 paint.setMaskFilter(fMaskFilter.get());
100 sk_tool_utils::set_portable_typeface(&paint); 100 sk_tool_utils::set_portable_typeface(&paint);
101 101
102 SkRect temp; 102 SkRect temp;
103 temp.set(SkIntToScalar(115), 103 temp.set(SkIntToScalar(115),
104 SkIntToScalar(75), 104 SkIntToScalar(75),
105 SkIntToScalar(144), 105 SkIntToScalar(144),
106 SkIntToScalar(110)); 106 SkIntToScalar(110));
107 107
108 SkPath path; 108 SkPath path;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 142
143 typedef GM INHERITED; 143 typedef GM INHERITED;
144 }; 144 };
145 145
146 ////////////////////////////////////////////////////////////////////////////// 146 //////////////////////////////////////////////////////////////////////////////
147 147
148 static GM* MyFactory(void*) { return new SamplerStressGM; } 148 static GM* MyFactory(void*) { return new SamplerStressGM; }
149 static GMRegistry reg(MyFactory); 149 static GMRegistry reg(MyFactory);
150 150
151 } 151 }
OLDNEW
« no previous file with comments | « gm/pictureshader.cpp ('k') | include/core/SkPaint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698