robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "gm.h" |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 9 | #include "SkBlurMask.h" |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 10 | #include "SkBlurMaskFilter.h" |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 11 | #include "SkCanvas.h" |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 12 | |
| 13 | // This GM tests out the quick reject bounds of the blur mask filter. It draws |
| 14 | // four blurred rects around a central clip. The blurred rect geometry outset |
| 15 | // by the blur radius does not overlap the clip rect so, if the blur clipping |
| 16 | // just uses the radius, they will be clipped out (and the result will differ |
| 17 | // from the result if quick reject were disabled. If the blur clipping uses |
| 18 | // the correct 3 sigma bound then the images with and without quick rejecting |
| 19 | // will be the same. |
| 20 | class BlurQuickRejectGM : public skiagm::GM { |
| 21 | public: |
| 22 | BlurQuickRejectGM() {} |
| 23 | |
| 24 | protected: |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 25 | SkString onShortName() SK_OVERRIDE { |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 26 | return SkString("blurquickreject"); |
| 27 | } |
| 28 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 29 | SkISize onISize() SK_OVERRIDE { |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 30 | return SkISize::Make(kWidth, kHeight); |
| 31 | } |
| 32 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 33 | void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 34 | static const SkScalar kBlurRadius = SkIntToScalar(20); |
| 35 | static const SkScalar kBoxSize = SkIntToScalar(100); |
| 36 | |
| 37 | SkRect clipRect = SkRect::MakeXYWH(0, 0, kBoxSize, kBoxSize); |
| 38 | SkRect blurRects[] = { |
| 39 | { -kBoxSize - (kBlurRadius+1), 0, -(kBlurRadius+1), kBoxSize }, |
| 40 | { 0, -kBoxSize - (kBlurRadius+1), kBoxSize, -(kBlurRadius+1) }, |
| 41 | { kBoxSize+kBlurRadius+1, 0, 2*kBoxSize+kBlurRadius+1, kBoxSize }, |
| 42 | { 0, kBoxSize+kBlurRadius+1, kBoxSize, 2*kBoxSize+kBlurRadius+1 } |
| 43 | }; |
| 44 | SkColor colors[] = { |
| 45 | SK_ColorRED, |
| 46 | SK_ColorGREEN, |
| 47 | SK_ColorBLUE, |
| 48 | SK_ColorYELLOW, |
| 49 | }; |
| 50 | SkASSERT(SK_ARRAY_COUNT(colors) == SK_ARRAY_COUNT(blurRects)); |
| 51 | |
| 52 | SkPaint hairlinePaint; |
| 53 | hairlinePaint.setStyle(SkPaint::kStroke_Style); |
| 54 | hairlinePaint.setColor(SK_ColorWHITE); |
| 55 | hairlinePaint.setStrokeWidth(0); |
| 56 | |
| 57 | SkPaint blurPaint; |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 58 | blurPaint.setFilterLevel(SkPaint::kLow_FilterLevel); |
commit-bot@chromium.org | e396455 | 2014-04-28 16:25:35 +0000 | [diff] [blame] | 59 | SkMaskFilter* mf = SkBlurMaskFilter::Create(kNormal_SkBlurStyle, |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 60 | SkBlurMask::ConvertRadiusToSigma(kBlurRadius)); |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 61 | blurPaint.setMaskFilter(mf)->unref(); |
| 62 | |
| 63 | canvas->clear(SK_ColorBLACK); |
| 64 | canvas->save(); |
| 65 | canvas->translate(kBoxSize, kBoxSize); |
| 66 | canvas->drawRect(clipRect, hairlinePaint); |
| 67 | canvas->clipRect(clipRect); |
robertphillips@google.com | 073a32e | 2013-07-30 12:29:20 +0000 | [diff] [blame] | 68 | for (size_t i = 0; i < SK_ARRAY_COUNT(blurRects); ++i) { |
robertphillips@google.com | 17ad2bd | 2013-07-30 12:15:19 +0000 | [diff] [blame] | 69 | blurPaint.setColor(colors[i]); |
| 70 | canvas->drawRect(blurRects[i], blurPaint); |
| 71 | canvas->drawRect(blurRects[i], hairlinePaint); |
| 72 | } |
| 73 | canvas->restore(); |
| 74 | } |
| 75 | |
| 76 | private: |
| 77 | static const int kWidth = 300; |
| 78 | static const int kHeight = 300; |
| 79 | |
| 80 | typedef GM INHERITED; |
| 81 | }; |
| 82 | |
| 83 | DEF_GM( return new BlurQuickRejectGM(); ) |