blob: 415fa7315a2501728c76fc63a480368e239995fb [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"
9#include "SkBlurImageFilter.h"
10#include "SkRandom.h"
11
12#define WIDTH 640
13#define HEIGHT 480
14
15namespace skiagm {
16
17class ImageBlurTiledGM : public GM {
18public:
19 ImageBlurTiledGM(SkScalar sigmaX, SkScalar sigmaY)
20 : fSigmaX(sigmaX), fSigmaY(sigmaY) {
21 }
22
23protected:
robertphillips6e7025a2016-04-04 04:31:25 -070024 SkString onShortName() override {
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000025 return SkString("imageblurtiled");
26 }
27
robertphillips6e7025a2016-04-04 04:31:25 -070028 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070029 return SkISize::Make(WIDTH, HEIGHT);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000030 }
31
robertphillips6e7025a2016-04-04 04:31:25 -070032 void onDraw(SkCanvas* canvas) override {
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000033 SkPaint paint;
robertphillips6e7025a2016-04-04 04:31:25 -070034 paint.setImageFilter(SkBlurImageFilter::Make(fSigmaX, fSigmaY, nullptr));
35 const SkScalar tileSize = SkIntToScalar(128);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000036 SkRect bounds;
reed@google.com76b12b72014-04-10 21:15:30 +000037 if (!canvas->getClipBounds(&bounds)) {
38 bounds.setEmpty();
39 }
robertphillips6e7025a2016-04-04 04:31:25 -070040 for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tileSize) {
41 for (SkScalar x = bounds.left(); x < bounds.right(); x += tileSize) {
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000042 canvas->save();
robertphillips6e7025a2016-04-04 04:31:25 -070043 canvas->clipRect(SkRect::MakeXYWH(x, y, tileSize, tileSize));
halcanary96fcdcc2015-08-27 07:41:13 -070044 canvas->saveLayer(nullptr, &paint);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000045 const char* str[] = {
46 "The quick",
47 "brown fox",
48 "jumped over",
49 "the lazy dog.",
50 };
51 SkPaint textPaint;
52 textPaint.setAntiAlias(true);
caryclark1818acb2015-07-24 12:09:25 -070053 sk_tool_utils::set_portable_typeface(&textPaint);
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000054 textPaint.setTextSize(SkIntToScalar(100));
55 int posY = 0;
56 for (unsigned i = 0; i < SK_ARRAY_COUNT(str); i++) {
57 posY += 100;
58 canvas->drawText(str[i], strlen(str[i]), SkIntToScalar(0),
59 SkIntToScalar(posY), textPaint);
60 }
61 canvas->restore();
62 canvas->restore();
63 }
64 }
65 }
66
67private:
68 SkScalar fSigmaX;
69 SkScalar fSigmaY;
70
71 typedef GM INHERITED;
72};
73
74//////////////////////////////////////////////////////////////////////////////
75
robertphillips6e7025a2016-04-04 04:31:25 -070076DEF_GM(return new ImageBlurTiledGM(3.0f, 3.0f);)
senorblanco@chromium.orgc4b12f12014-02-05 17:51:22 +000077
78}