skia2/gm/imageblurtiled.cpp
Herb Derby c37b386886 Replace SK_ARRAY_COUNT with std::size() for skia/gm
Note: in variedtext.cpp:66 changed static_assert to SkASSERT.

Change-Id: I853a2e5563c90c9dde5d6ba5443cc73b664b493d
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/551876
Commit-Queue: Herb Derby <herb@google.com>
Reviewed-by: John Stiles <johnstiles@google.com>
2022-06-21 18:09:30 +00:00

82 lines
2.3 KiB
C++

/*
* Copyright 2014 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/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"
#include "include/effects/SkImageFilters.h"
#include "tools/ToolUtils.h"
#define WIDTH 640
#define HEIGHT 480
namespace skiagm {
class ImageBlurTiledGM : public GM {
public:
ImageBlurTiledGM(SkScalar sigmaX, SkScalar sigmaY)
: fSigmaX(sigmaX), fSigmaY(sigmaY) {
}
protected:
SkString onShortName() override {
return SkString("imageblurtiled");
}
SkISize onISize() override {
return SkISize::Make(WIDTH, HEIGHT);
}
void onDraw(SkCanvas* canvas) override {
SkPaint paint;
paint.setImageFilter(SkImageFilters::Blur(fSigmaX, fSigmaY, nullptr));
const SkScalar tileSize = SkIntToScalar(128);
SkRect bounds = canvas->getLocalClipBounds();
for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tileSize) {
for (SkScalar x = bounds.left(); x < bounds.right(); x += tileSize) {
canvas->save();
canvas->clipRect(SkRect::MakeXYWH(x, y, tileSize, tileSize));
canvas->saveLayer(nullptr, &paint);
const char* str[] = {
"The quick",
"brown fox",
"jumped over",
"the lazy dog.",
};
SkFont font(ToolUtils::create_portable_typeface(), 100);
int posY = 0;
for (unsigned i = 0; i < std::size(str); i++) {
posY += 100;
canvas->drawString(str[i], 0, SkIntToScalar(posY), font, SkPaint());
}
canvas->restore();
canvas->restore();
}
}
}
private:
SkScalar fSigmaX;
SkScalar fSigmaY;
using INHERITED = GM;
};
//////////////////////////////////////////////////////////////////////////////
DEF_GM(return new ImageBlurTiledGM(3.0f, 3.0f);)
} // namespace skiagm