OLD | NEW |
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 } |
OLD | NEW |