senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "gm/gm.h" |
Ben Wagner | 7fde8e1 | 2019-05-01 17:28:53 -0400 | [diff] [blame] | 9 | #include "include/core/SkCanvas.h" |
| 10 | #include "include/core/SkImageFilter.h" |
| 11 | #include "include/core/SkImageInfo.h" |
| 12 | #include "include/core/SkPaint.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 13 | #include "include/core/SkRRect.h" |
Ben Wagner | 7fde8e1 | 2019-05-01 17:28:53 -0400 | [diff] [blame] | 14 | #include "include/core/SkRect.h" |
| 15 | #include "include/core/SkRefCnt.h" |
| 16 | #include "include/core/SkScalar.h" |
| 17 | #include "include/core/SkSize.h" |
| 18 | #include "include/core/SkString.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 19 | #include "include/core/SkSurface.h" |
Michael Ludwig | 898bbfa | 2019-08-02 15:21:23 -0400 | [diff] [blame] | 20 | #include "include/effects/SkImageFilters.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 21 | #include "src/core/SkClipOpPriv.h" |
| 22 | #include "tools/ToolUtils.h" |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 23 | |
| 24 | #define WIDTH 512 |
| 25 | #define HEIGHT 512 |
| 26 | |
| 27 | namespace skiagm { |
| 28 | |
| 29 | class ComplexClipBlurTiledGM : public GM { |
| 30 | public: |
| 31 | ComplexClipBlurTiledGM() { |
| 32 | } |
| 33 | |
| 34 | protected: |
| 35 | SkString onShortName() override { |
| 36 | return SkString("complexclip_blur_tiled"); |
| 37 | } |
| 38 | |
| 39 | SkISize onISize() override { |
| 40 | return SkISize::Make(WIDTH, HEIGHT); |
| 41 | } |
| 42 | |
| 43 | void onDraw(SkCanvas* canvas) override { |
| 44 | SkPaint blurPaint; |
Michael Ludwig | 898bbfa | 2019-08-02 15:21:23 -0400 | [diff] [blame] | 45 | blurPaint.setImageFilter(SkImageFilters::Blur(5.0f, 5.0f, nullptr)); |
robertphillips | 6e7025a | 2016-04-04 04:31:25 -0700 | [diff] [blame] | 46 | const SkScalar tileSize = SkIntToScalar(128); |
Mike Reed | 918e144 | 2017-01-23 11:39:45 -0500 | [diff] [blame] | 47 | SkRect bounds = canvas->getLocalClipBounds(); |
robertphillips | 6e7025a | 2016-04-04 04:31:25 -0700 | [diff] [blame] | 48 | int ts = SkScalarCeilToInt(tileSize); |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 49 | SkImageInfo info = SkImageInfo::MakeN32Premul(ts, ts); |
Mike Klein | ea3f014 | 2019-03-20 11:12:10 -0500 | [diff] [blame] | 50 | auto tileSurface(ToolUtils::makeSurface(canvas, info)); |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 51 | SkCanvas* tileCanvas = tileSurface->getCanvas(); |
robertphillips | 6e7025a | 2016-04-04 04:31:25 -0700 | [diff] [blame] | 52 | for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tileSize) { |
| 53 | for (SkScalar x = bounds.left(); x < bounds.right(); x += tileSize) { |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 54 | tileCanvas->save(); |
| 55 | tileCanvas->clear(0); |
| 56 | tileCanvas->translate(-x, -y); |
| 57 | SkRect rect = SkRect::MakeWH(WIDTH, HEIGHT); |
| 58 | tileCanvas->saveLayer(&rect, &blurPaint); |
| 59 | SkRRect rrect = SkRRect::MakeRectXY(rect.makeInset(20, 20), 25, 25); |
Mike Reed | c1f7774 | 2016-12-09 09:00:50 -0500 | [diff] [blame] | 60 | tileCanvas->clipRRect(rrect, kDifference_SkClipOp, true); |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 61 | SkPaint paint; |
| 62 | tileCanvas->drawRect(rect, paint); |
| 63 | tileCanvas->restore(); |
| 64 | tileCanvas->restore(); |
reed | 9ce9d67 | 2016-03-17 10:51:11 -0700 | [diff] [blame] | 65 | canvas->drawImage(tileSurface->makeImageSnapshot().get(), x, y); |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | private: |
John Stiles | 7571f9e | 2020-09-02 22:42:33 -0400 | [diff] [blame] | 71 | using INHERITED = GM; |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | ////////////////////////////////////////////////////////////////////////////// |
| 75 | |
robertphillips | 6e7025a | 2016-04-04 04:31:25 -0700 | [diff] [blame] | 76 | DEF_GM(return new ComplexClipBlurTiledGM;) |
senorblanco | afc7cce | 2016-02-02 18:44:15 -0800 | [diff] [blame] | 77 | |
John Stiles | a6841be | 2020-08-06 14:11:56 -0400 | [diff] [blame] | 78 | } // namespace skiagm |