| 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" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 SkScalar dx = WIDTH / sigmaCount; | 51 SkScalar dx = WIDTH / sigmaCount; |
| 52 SkScalar dy = HEIGHT / sigmaCount; | 52 SkScalar dy = HEIGHT / sigmaCount; |
| 53 const SkScalar textSize = 12; | 53 const SkScalar textSize = 12; |
| 54 | 54 |
| 55 for (int x = 0; x < sigmaCount; x++) { | 55 for (int x = 0; x < sigmaCount; x++) { |
| 56 SkScalar sigmaX = kBlurSigmas[x]; | 56 SkScalar sigmaX = kBlurSigmas[x]; |
| 57 for (int y = 0; y < sigmaCount; y++) { | 57 for (int y = 0; y < sigmaCount; y++) { |
| 58 SkScalar sigmaY = kBlurSigmas[y]; | 58 SkScalar sigmaY = kBlurSigmas[y]; |
| 59 | 59 |
| 60 SkPaint paint; | 60 SkPaint paint; |
| 61 paint.setImageFilter(SkBlurImageFilter::Create(sigmaX, sigmaY))-
>unref(); | 61 SkAutoTUnref<SkImageFilter> blur(SkBlurImageFilter::Create(sigma
X, sigmaY)); |
| 62 paint.setImageFilter(blur); |
| 62 canvas->saveLayer(nullptr, &paint); | 63 canvas->saveLayer(nullptr, &paint); |
| 63 | 64 |
| 64 SkRandom rand; | 65 SkRandom rand; |
| 65 SkPaint textPaint; | 66 SkPaint textPaint; |
| 66 textPaint.setAntiAlias(false); | 67 textPaint.setAntiAlias(false); |
| 67 textPaint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24)
| 0xFF000000)); | 68 textPaint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24)
| 0xFF000000)); |
| 68 sk_tool_utils::set_portable_typeface(&textPaint); | 69 sk_tool_utils::set_portable_typeface(&textPaint); |
| 69 textPaint.setTextSize(textSize); | 70 textPaint.setTextSize(textSize); |
| 70 | 71 |
| 71 for (int i = 0; i < testStringCount; i++) { | 72 for (int i = 0; i < testStringCount; i++) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 85 | 86 |
| 86 typedef GM INHERITED; | 87 typedef GM INHERITED; |
| 87 }; | 88 }; |
| 88 | 89 |
| 89 ////////////////////////////////////////////////////////////////////////////// | 90 ////////////////////////////////////////////////////////////////////////////// |
| 90 | 91 |
| 91 static GM* MyFactory(void*) { return new BlurImageFilter; } | 92 static GM* MyFactory(void*) { return new BlurImageFilter; } |
| 92 static GMRegistry reg(MyFactory); | 93 static GMRegistry reg(MyFactory); |
| 93 | 94 |
| 94 } | 95 } |
| OLD | NEW |