OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 "SkBlurMask.h" |
| 10 #include "SkBlurMaskFilter.h" |
9 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
10 #include "SkBlurMaskFilter.h" | |
11 | 12 |
12 // This GM tests out the quick reject bounds of the blur mask filter. It draws | 13 // This GM tests out the quick reject bounds of the blur mask filter. It draws |
13 // four blurred rects around a central clip. The blurred rect geometry outset | 14 // four blurred rects around a central clip. The blurred rect geometry outset |
14 // by the blur radius does not overlap the clip rect so, if the blur clipping | 15 // by the blur radius does not overlap the clip rect so, if the blur clipping |
15 // just uses the radius, they will be clipped out (and the result will differ | 16 // just uses the radius, they will be clipped out (and the result will differ |
16 // from the result if quick reject were disabled. If the blur clipping uses | 17 // from the result if quick reject were disabled. If the blur clipping uses |
17 // the correct 3 sigma bound then the images with and without quick rejecting | 18 // the correct 3 sigma bound then the images with and without quick rejecting |
18 // will be the same. | 19 // will be the same. |
19 class BlurQuickRejectGM : public skiagm::GM { | 20 class BlurQuickRejectGM : public skiagm::GM { |
20 public: | 21 public: |
(...skipping 27 matching lines...) Expand all Loading... |
48 }; | 49 }; |
49 SkASSERT(SK_ARRAY_COUNT(colors) == SK_ARRAY_COUNT(blurRects)); | 50 SkASSERT(SK_ARRAY_COUNT(colors) == SK_ARRAY_COUNT(blurRects)); |
50 | 51 |
51 SkPaint hairlinePaint; | 52 SkPaint hairlinePaint; |
52 hairlinePaint.setStyle(SkPaint::kStroke_Style); | 53 hairlinePaint.setStyle(SkPaint::kStroke_Style); |
53 hairlinePaint.setColor(SK_ColorWHITE); | 54 hairlinePaint.setColor(SK_ColorWHITE); |
54 hairlinePaint.setStrokeWidth(0); | 55 hairlinePaint.setStrokeWidth(0); |
55 | 56 |
56 SkPaint blurPaint; | 57 SkPaint blurPaint; |
57 blurPaint.setFilterBitmap(true); | 58 blurPaint.setFilterBitmap(true); |
58 SkMaskFilter* mf = SkBlurMaskFilter::Create(kBlurRadius, | 59 SkMaskFilter* mf = SkBlurMaskFilter::Create(SkBlurMaskFilter::kNormal_Bl
urStyle, |
59 SkBlurMaskFilter::kNormal_Bl
urStyle); | 60 SkBlurMask::ConvertRadiusToS
igma(kBlurRadius)); |
60 blurPaint.setMaskFilter(mf)->unref(); | 61 blurPaint.setMaskFilter(mf)->unref(); |
61 | 62 |
62 canvas->clear(SK_ColorBLACK); | 63 canvas->clear(SK_ColorBLACK); |
63 canvas->save(); | 64 canvas->save(); |
64 canvas->translate(kBoxSize, kBoxSize); | 65 canvas->translate(kBoxSize, kBoxSize); |
65 canvas->drawRect(clipRect, hairlinePaint); | 66 canvas->drawRect(clipRect, hairlinePaint); |
66 canvas->clipRect(clipRect); | 67 canvas->clipRect(clipRect); |
67 for (size_t i = 0; i < SK_ARRAY_COUNT(blurRects); ++i) { | 68 for (size_t i = 0; i < SK_ARRAY_COUNT(blurRects); ++i) { |
68 blurPaint.setColor(colors[i]); | 69 blurPaint.setColor(colors[i]); |
69 canvas->drawRect(blurRects[i], blurPaint); | 70 canvas->drawRect(blurRects[i], blurPaint); |
70 canvas->drawRect(blurRects[i], hairlinePaint); | 71 canvas->drawRect(blurRects[i], hairlinePaint); |
71 } | 72 } |
72 canvas->restore(); | 73 canvas->restore(); |
73 } | 74 } |
74 | 75 |
75 private: | 76 private: |
76 static const int kWidth = 300; | 77 static const int kWidth = 300; |
77 static const int kHeight = 300; | 78 static const int kHeight = 300; |
78 | 79 |
79 typedef GM INHERITED; | 80 typedef GM INHERITED; |
80 }; | 81 }; |
81 | 82 |
82 DEF_GM( return new BlurQuickRejectGM(); ) | 83 DEF_GM( return new BlurQuickRejectGM(); ) |
OLD | NEW |