2014-02-05 17:51:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/core/SkImageFilter.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
|
|
|
#include "include/core/SkTypeface.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
2019-08-02 19:21:23 +00:00
|
|
|
#include "include/effects/SkImageFilters.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/ToolUtils.h"
|
2014-02-05 17:51:22 +00:00
|
|
|
|
|
|
|
#define WIDTH 640
|
|
|
|
#define HEIGHT 480
|
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
class ImageBlurTiledGM : public GM {
|
|
|
|
public:
|
|
|
|
ImageBlurTiledGM(SkScalar sigmaX, SkScalar sigmaY)
|
|
|
|
: fSigmaX(sigmaX), fSigmaY(sigmaY) {
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2016-04-04 11:31:25 +00:00
|
|
|
SkString onShortName() override {
|
2014-02-05 17:51:22 +00:00
|
|
|
return SkString("imageblurtiled");
|
|
|
|
}
|
|
|
|
|
2016-04-04 11:31:25 +00:00
|
|
|
SkISize onISize() override {
|
2014-06-10 06:59:03 +00:00
|
|
|
return SkISize::Make(WIDTH, HEIGHT);
|
2014-02-05 17:51:22 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 11:31:25 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2014-02-05 17:51:22 +00:00
|
|
|
SkPaint paint;
|
2019-08-02 19:21:23 +00:00
|
|
|
paint.setImageFilter(SkImageFilters::Blur(fSigmaX, fSigmaY, nullptr));
|
2016-04-04 11:31:25 +00:00
|
|
|
const SkScalar tileSize = SkIntToScalar(128);
|
2017-01-23 16:39:45 +00:00
|
|
|
SkRect bounds = canvas->getLocalClipBounds();
|
2016-04-04 11:31:25 +00:00
|
|
|
for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tileSize) {
|
|
|
|
for (SkScalar x = bounds.left(); x < bounds.right(); x += tileSize) {
|
2014-02-05 17:51:22 +00:00
|
|
|
canvas->save();
|
2016-04-04 11:31:25 +00:00
|
|
|
canvas->clipRect(SkRect::MakeXYWH(x, y, tileSize, tileSize));
|
2015-08-27 14:41:13 +00:00
|
|
|
canvas->saveLayer(nullptr, &paint);
|
2014-02-05 17:51:22 +00:00
|
|
|
const char* str[] = {
|
|
|
|
"The quick",
|
|
|
|
"brown fox",
|
|
|
|
"jumped over",
|
|
|
|
"the lazy dog.",
|
|
|
|
};
|
2019-03-20 16:12:10 +00:00
|
|
|
SkFont font(ToolUtils::create_portable_typeface(), 100);
|
2014-02-05 17:51:22 +00:00
|
|
|
int posY = 0;
|
|
|
|
for (unsigned i = 0; i < SK_ARRAY_COUNT(str); i++) {
|
|
|
|
posY += 100;
|
2019-01-07 16:01:57 +00:00
|
|
|
canvas->drawString(str[i], 0, SkIntToScalar(posY), font, SkPaint());
|
2014-02-05 17:51:22 +00:00
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkScalar fSigmaX;
|
|
|
|
SkScalar fSigmaY;
|
|
|
|
|
2020-09-03 02:42:33 +00:00
|
|
|
using INHERITED = GM;
|
2014-02-05 17:51:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-04-04 11:31:25 +00:00
|
|
|
DEF_GM(return new ImageBlurTiledGM(3.0f, 3.0f);)
|
2014-02-05 17:51:22 +00:00
|
|
|
|
2020-08-06 18:11:56 +00:00
|
|
|
} // namespace skiagm
|