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

Side by Side Diff: gm/texteffects.cpp

Issue 23701006: Push sigma-based blur interface into our GMs/benches/tests/samplecode (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Cleaned up Created 7 years, 3 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 | Annotate | Revision Log
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 #include "gm.h" 8 #include "gm.h"
9 #include "SkFlattenableBuffers.h" 9 #include "SkFlattenableBuffers.h"
10 #include "SkLayerRasterizer.h" 10 #include "SkLayerRasterizer.h"
11 #include "SkBlurMaskFilter.h" 11 #include "SkBlurMaskFilter.h"
12 12
13 static void r0(SkLayerRasterizer* rast, SkPaint& p) { 13 static void r0(SkLayerRasterizer* rast, SkPaint& p) {
14 p.setMaskFilter(SkBlurMaskFilter::Create(SkIntToScalar(3), 14 p.setMaskFilter(SkBlurMaskFilter::Create(SkBlurMaskFilter::kNormal_BlurStyle ,
15 SkBlurMaskFilter::kNormal_BlurStyle ))->unref(); 15 SkFloatToScalar(2.23205f)))->unref( );
16 rast->addLayer(p, SkIntToScalar(3), SkIntToScalar(3)); 16 rast->addLayer(p, SkIntToScalar(3), SkIntToScalar(3));
17 17
18 p.setMaskFilter(NULL); 18 p.setMaskFilter(NULL);
19 p.setStyle(SkPaint::kStroke_Style); 19 p.setStyle(SkPaint::kStroke_Style);
20 p.setStrokeWidth(SK_Scalar1); 20 p.setStrokeWidth(SK_Scalar1);
21 rast->addLayer(p); 21 rast->addLayer(p);
22 22
23 p.setAlpha(0x11); 23 p.setAlpha(0x11);
24 p.setStyle(SkPaint::kFill_Style); 24 p.setStyle(SkPaint::kFill_Style);
25 p.setXfermodeMode(SkXfermode::kSrc_Mode); 25 p.setXfermodeMode(SkXfermode::kSrc_Mode);
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 } 208 }
209 209
210 private: 210 private:
211 typedef skiagm::GM INHERITED; 211 typedef skiagm::GM INHERITED;
212 }; 212 };
213 213
214 ////////////////////////////////////////////////////////////////////////////// 214 //////////////////////////////////////////////////////////////////////////////
215 215
216 static skiagm::GM* MyFactory(void*) { return new TextEffectsGM; } 216 static skiagm::GM* MyFactory(void*) { return new TextEffectsGM; }
217 static skiagm::GMRegistry reg(MyFactory); 217 static skiagm::GMRegistry reg(MyFactory);
OLDNEW
« bench/BlurBench.cpp ('K') | « gm/shadows.cpp ('k') | gm/tilemodes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698