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

Side by Side Diff: gm/imageblurtiled.cpp

Issue 182983003: Factory methods for heap-allocated SkImageFilter objects. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase Created 6 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/imageblur.cpp ('k') | gm/imagefiltersbase.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 2014 Google Inc. 2 * Copyright 2014 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 "SkBlurImageFilter.h" 9 #include "SkBlurImageFilter.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
(...skipping 13 matching lines...) Expand all
24 virtual SkString onShortName() { 24 virtual SkString onShortName() {
25 return SkString("imageblurtiled"); 25 return SkString("imageblurtiled");
26 } 26 }
27 27
28 virtual SkISize onISize() { 28 virtual SkISize onISize() {
29 return make_isize(WIDTH, HEIGHT); 29 return make_isize(WIDTH, HEIGHT);
30 } 30 }
31 31
32 virtual void onDraw(SkCanvas* canvas) { 32 virtual void onDraw(SkCanvas* canvas) {
33 SkPaint paint; 33 SkPaint paint;
34 paint.setImageFilter(new SkBlurImageFilter(fSigmaX, fSigmaY))->unref(); 34 paint.setImageFilter(SkBlurImageFilter::Create(fSigmaX, fSigmaY))->unref ();
35 const SkScalar tile_size = SkIntToScalar(128); 35 const SkScalar tile_size = SkIntToScalar(128);
36 SkRect bounds; 36 SkRect bounds;
37 canvas->getClipBounds(&bounds); 37 canvas->getClipBounds(&bounds);
38 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) { 38 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) {
39 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) { 39 for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) {
40 canvas->save(); 40 canvas->save();
41 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size)); 41 canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
42 canvas->saveLayer(NULL, &paint); 42 canvas->saveLayer(NULL, &paint);
43 const char* str[] = { 43 const char* str[] = {
44 "The quick", 44 "The quick",
(...skipping 22 matching lines...) Expand all
67 67
68 typedef GM INHERITED; 68 typedef GM INHERITED;
69 }; 69 };
70 70
71 ////////////////////////////////////////////////////////////////////////////// 71 //////////////////////////////////////////////////////////////////////////////
72 72
73 static GM* MyFactory1(void*) { return new ImageBlurTiledGM(3.0f, 3.0f); } 73 static GM* MyFactory1(void*) { return new ImageBlurTiledGM(3.0f, 3.0f); }
74 static GMRegistry reg1(MyFactory1); 74 static GMRegistry reg1(MyFactory1);
75 75
76 } 76 }
OLDNEW
« no previous file with comments | « gm/imageblur.cpp ('k') | gm/imagefiltersbase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698