7571f9e490
Mechanically updated via Xcode "Replace Regular Expression": typedef (.*) INHERITED; --> using INHERITED = $1; The ClangTidy approach generated an even larger CL which would have required a significant amount of hand-tweaking to be usable. Change-Id: I671dc9d9efdf6d60151325c8d4d13fad7e10a15b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/314999 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
79 lines
2.5 KiB
C++
79 lines
2.5 KiB
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm/gm.h"
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkImageFilter.h"
|
|
#include "include/core/SkImageInfo.h"
|
|
#include "include/core/SkPaint.h"
|
|
#include "include/core/SkRRect.h"
|
|
#include "include/core/SkRect.h"
|
|
#include "include/core/SkRefCnt.h"
|
|
#include "include/core/SkScalar.h"
|
|
#include "include/core/SkSize.h"
|
|
#include "include/core/SkString.h"
|
|
#include "include/core/SkSurface.h"
|
|
#include "include/effects/SkImageFilters.h"
|
|
#include "src/core/SkClipOpPriv.h"
|
|
#include "tools/ToolUtils.h"
|
|
|
|
#define WIDTH 512
|
|
#define HEIGHT 512
|
|
|
|
namespace skiagm {
|
|
|
|
class ComplexClipBlurTiledGM : public GM {
|
|
public:
|
|
ComplexClipBlurTiledGM() {
|
|
}
|
|
|
|
protected:
|
|
SkString onShortName() override {
|
|
return SkString("complexclip_blur_tiled");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(WIDTH, HEIGHT);
|
|
}
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
SkPaint blurPaint;
|
|
blurPaint.setImageFilter(SkImageFilters::Blur(5.0f, 5.0f, nullptr));
|
|
const SkScalar tileSize = SkIntToScalar(128);
|
|
SkRect bounds = canvas->getLocalClipBounds();
|
|
int ts = SkScalarCeilToInt(tileSize);
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(ts, ts);
|
|
auto tileSurface(ToolUtils::makeSurface(canvas, info));
|
|
SkCanvas* tileCanvas = tileSurface->getCanvas();
|
|
for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tileSize) {
|
|
for (SkScalar x = bounds.left(); x < bounds.right(); x += tileSize) {
|
|
tileCanvas->save();
|
|
tileCanvas->clear(0);
|
|
tileCanvas->translate(-x, -y);
|
|
SkRect rect = SkRect::MakeWH(WIDTH, HEIGHT);
|
|
tileCanvas->saveLayer(&rect, &blurPaint);
|
|
SkRRect rrect = SkRRect::MakeRectXY(rect.makeInset(20, 20), 25, 25);
|
|
tileCanvas->clipRRect(rrect, kDifference_SkClipOp, true);
|
|
SkPaint paint;
|
|
tileCanvas->drawRect(rect, paint);
|
|
tileCanvas->restore();
|
|
tileCanvas->restore();
|
|
canvas->drawImage(tileSurface->makeImageSnapshot().get(), x, y);
|
|
}
|
|
}
|
|
}
|
|
|
|
private:
|
|
using INHERITED = GM;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_GM(return new ComplexClipBlurTiledGM;)
|
|
|
|
} // namespace skiagm
|