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

Side by Side Diff: gm/texteffects.cpp

Issue 21835004: Blur refactoring (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: hide constant Created 7 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 | 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(SkIntToScalar(3),
15 SkBlurMaskFilter::kNormal_BlurStyle ))->unref(); 15 SkBlurMaskFilter::kNormal_BlurStyle ,
16 SkBlurMaskFilter::kNone_BlurFlag))- >unref();
16 rast->addLayer(p, SkIntToScalar(3), SkIntToScalar(3)); 17 rast->addLayer(p, SkIntToScalar(3), SkIntToScalar(3));
17 18
18 p.setMaskFilter(NULL); 19 p.setMaskFilter(NULL);
19 p.setStyle(SkPaint::kStroke_Style); 20 p.setStyle(SkPaint::kStroke_Style);
20 p.setStrokeWidth(SK_Scalar1); 21 p.setStrokeWidth(SK_Scalar1);
21 rast->addLayer(p); 22 rast->addLayer(p);
22 23
23 p.setAlpha(0x11); 24 p.setAlpha(0x11);
24 p.setStyle(SkPaint::kFill_Style); 25 p.setStyle(SkPaint::kFill_Style);
25 p.setXfermodeMode(SkXfermode::kSrc_Mode); 26 p.setXfermodeMode(SkXfermode::kSrc_Mode);
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 } 209 }
209 210
210 private: 211 private:
211 typedef skiagm::GM INHERITED; 212 typedef skiagm::GM INHERITED;
212 }; 213 };
213 214
214 ////////////////////////////////////////////////////////////////////////////// 215 //////////////////////////////////////////////////////////////////////////////
215 216
216 static skiagm::GM* MyFactory(void*) { return new TextEffectsGM; } 217 static skiagm::GM* MyFactory(void*) { return new TextEffectsGM; }
217 static skiagm::GMRegistry reg(MyFactory); 218 static skiagm::GMRegistry reg(MyFactory);
OLDNEW
« no previous file with comments | « gm/shadows.cpp ('k') | gm/tilemodes.cpp » ('j') | include/effects/SkBlurDrawLooper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698