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

Side by Side Diff: gm/imageblur.cpp

Issue 1852743002: Update SkBlurImageFilter to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Update to ToT & address code review comments Created 4 years, 8 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/filterfastbounds.cpp ('k') | gm/imageblur2.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 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 "SkBlurImageFilter.h" 9 #include "SkBlurImageFilter.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
11 11
12 #define WIDTH 500 12 #define WIDTH 500
13 #define HEIGHT 500 13 #define HEIGHT 500
14 14
15 void imageblurgm_draw(SkScalar fSigmaX, SkScalar fSigmaY, SkCanvas* canvas) { 15 void imageblurgm_draw(SkScalar fSigmaX, SkScalar fSigmaY, SkCanvas* canvas) {
16 SkPaint paint; 16 SkPaint paint;
17 SkAutoTUnref<SkImageFilter> blur(SkBlurImageFilter::Create(fSigmaX, fSig maY)); 17 paint.setImageFilter(SkBlurImageFilter::Make(fSigmaX, fSigmaY, nullptr)) ;
18 paint.setImageFilter(blur);
19 canvas->saveLayer(nullptr, &paint); 18 canvas->saveLayer(nullptr, &paint);
20 const char* str = "The quick brown fox jumped over the lazy dog."; 19 const char* str = "The quick brown fox jumped over the lazy dog.";
21 20
22 SkRandom rand; 21 SkRandom rand;
23 SkPaint textPaint; 22 SkPaint textPaint;
24 textPaint.setAntiAlias(true); 23 textPaint.setAntiAlias(true);
25 sk_tool_utils::set_portable_typeface(&textPaint); 24 sk_tool_utils::set_portable_typeface(&textPaint);
26 for (int i = 0; i < 25; ++i) { 25 for (int i = 0; i < 25; ++i) {
27 int x = rand.nextULessThan(WIDTH); 26 int x = rand.nextULessThan(WIDTH);
28 int y = rand.nextULessThan(HEIGHT); 27 int y = rand.nextULessThan(HEIGHT);
29 textPaint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24) | 0 xFF000000)); 28 textPaint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24) | 0 xFF000000));
30 textPaint.setTextSize(rand.nextRangeScalar(0, 300)); 29 textPaint.setTextSize(rand.nextRangeScalar(0, 300));
31 canvas->drawText(str, strlen(str), SkIntToScalar(x), 30 canvas->drawText(str, strlen(str), SkIntToScalar(x),
32 SkIntToScalar(y), textPaint); 31 SkIntToScalar(y), textPaint);
33 } 32 }
34 canvas->restore(); 33 canvas->restore();
35 } 34 }
36 DEF_SIMPLE_GM_BG(imageblur, canvas, WIDTH, HEIGHT, SK_ColorBLACK) { 35 DEF_SIMPLE_GM_BG(imageblur, canvas, WIDTH, HEIGHT, SK_ColorBLACK) {
37 imageblurgm_draw(24.0f, 0.0f, canvas); 36 imageblurgm_draw(24.0f, 0.0f, canvas);
38 } 37 }
39 DEF_SIMPLE_GM_BG(imageblur_large, canvas, WIDTH, HEIGHT, SK_ColorBLACK) { 38 DEF_SIMPLE_GM_BG(imageblur_large, canvas, WIDTH, HEIGHT, SK_ColorBLACK) {
40 imageblurgm_draw(80.0f, 80.0f, canvas); 39 imageblurgm_draw(80.0f, 80.0f, canvas);
41 } 40 }
OLDNEW
« no previous file with comments | « gm/filterfastbounds.cpp ('k') | gm/imageblur2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698