blob: 7d846be370bb83a672ccce971d05a7f02028e75c [file] [log] [blame]
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +00001/*
2 * Copyright 2014 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"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000010#include "SkBlurImageFilter.h"
11#include "SkRandom.h"
12
13#define WIDTH 640
14#define HEIGHT 480
15
16namespace skiagm {
17
18class ImageBlurTiledGM : public GM {
19public:
20 ImageBlurTiledGM(SkScalar sigmaX, SkScalar sigmaY)
21 : fSigmaX(sigmaX), fSigmaY(sigmaY) {
22 }
23
24protected:
robertphillips6e7025a2016-04-04 04:31:25 -070025 SkString onShortName() override {
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000026 return SkString("imageblurtiled");
27 }
28
robertphillips6e7025a2016-04-04 04:31:25 -070029 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070030 return SkISize::Make(WIDTH, HEIGHT);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000031 }
32
robertphillips6e7025a2016-04-04 04:31:25 -070033 void onDraw(SkCanvas* canvas) override {
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000034 SkPaint paint;
robertphillips6e7025a2016-04-04 04:31:25 -070035 paint.setImageFilter(SkBlurImageFilter::Make(fSigmaX, fSigmaY, nullptr));
36 const SkScalar tileSize = SkIntToScalar(128);
Mike Reed918e1442017-01-23 11:39:45 -050037 SkRect bounds = canvas->getLocalClipBounds();
robertphillips6e7025a2016-04-04 04:31:25 -070038 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tileSize) {
39 for (SkScalar x = bounds.left(); x < bounds.right(); x += tileSize) {
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000040 canvas->save();
robertphillips6e7025a2016-04-04 04:31:25 -070041 canvas->clipRect(SkRect::MakeXYWH(x, y, tileSize, tileSize));
halcanary96fcdcc2015-08-27 07:41:13 -070042 canvas->saveLayer(nullptr, &paint);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000043 const char* str[] = {
44 "The quick",
45 "brown fox",
46 "jumped over",
47 "the lazy dog.",
48 };
49 SkPaint textPaint;
50 textPaint.setAntiAlias(true);
caryclark1818acb2015-07-24 12:09:25 -070051 sk_tool_utils::set_portable_typeface(&textPaint);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000052 textPaint.setTextSize(SkIntToScalar(100));
53 int posY = 0;
54 for (unsigned i = 0; i < SK_ARRAY_COUNT(str); i++) {
55 posY += 100;
56 canvas->drawText(str[i], strlen(str[i]), SkIntToScalar(0),
57 SkIntToScalar(posY), textPaint);
58 }
59 canvas->restore();
60 canvas->restore();
61 }
62 }
63 }
64
65private:
66 SkScalar fSigmaX;
67 SkScalar fSigmaY;
68
69 typedef GM INHERITED;
70};
71
72//////////////////////////////////////////////////////////////////////////////
73
robertphillips6e7025a2016-04-04 04:31:25 -070074DEF_GM(return new ImageBlurTiledGM(3.0f, 3.0f);)
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000075
76}