blob: 402f65a3c69fc6441782131b6ec9190fda8151fc [file] [log] [blame]
reed@google.com3b14dc12011-04-04 14:31:36 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 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.
reed@google.com3b14dc12011-04-04 14:31:36 +00006 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkCanvas.h"
10#include "include/core/SkPaint.h"
11#include "include/core/SkRect.h"
12#include "include/core/SkScalar.h"
13#include "include/core/SkSize.h"
14#include "include/core/SkString.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "include/utils/SkRandom.h"
reed@google.com3b14dc12011-04-04 14:31:36 +000016
17namespace skiagm {
18
19#define W 400
20#define H 400
21#define N 100
22
mtkleindbfd7ab2016-09-01 11:24:54 -070023constexpr SkScalar SW = SkIntToScalar(W);
24constexpr SkScalar SH = SkIntToScalar(H);
reed@google.com3b14dc12011-04-04 14:31:36 +000025
commit-bot@chromium.orgbc451d22013-12-09 09:14:59 +000026class StrokeRectsGM : public GM {
reed@google.com3b14dc12011-04-04 14:31:36 +000027public:
commit-bot@chromium.orgbc451d22013-12-09 09:14:59 +000028 StrokeRectsGM() {}
rmistry@google.comd6176b02012-08-23 18:14:13 +000029
reed@google.com3b14dc12011-04-04 14:31:36 +000030protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +000031
mtklein36352bf2015-03-25 18:17:31 -070032 SkString onShortName() override {
reed@google.com3b14dc12011-04-04 14:31:36 +000033 return SkString("strokerects");
34 }
35
mtklein36352bf2015-03-25 18:17:31 -070036 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070037 return SkISize::Make(W*2, H*2);
reed@google.com3b14dc12011-04-04 14:31:36 +000038 }
39
scroggof9d61012014-12-15 12:54:51 -080040 static void rnd_rect(SkRect* r, SkRandom& rand) {
reed@google.com3b14dc12011-04-04 14:31:36 +000041 SkScalar x = rand.nextUScalar1() * W;
42 SkScalar y = rand.nextUScalar1() * H;
43 SkScalar w = rand.nextUScalar1() * (W >> 2);
44 SkScalar h = rand.nextUScalar1() * (H >> 2);
epoger@google.com17b78942011-08-26 14:40:38 +000045 SkScalar hoffset = rand.nextSScalar1();
46 SkScalar woffset = rand.nextSScalar1();
rmistry@google.comd6176b02012-08-23 18:14:13 +000047
Mike Reed92b33352019-08-24 19:39:13 -040048 r->setXYWH(x, y, w, h);
epoger@google.com17b78942011-08-26 14:40:38 +000049 r->offset(-w/2 + woffset, -h/2 + hoffset);
reed@google.com3b14dc12011-04-04 14:31:36 +000050 }
51
mtklein36352bf2015-03-25 18:17:31 -070052 void onDraw(SkCanvas* canvas) override {
reed@google.com3b14dc12011-04-04 14:31:36 +000053 SkPaint paint;
54 paint.setStyle(SkPaint::kStroke_Style);
55
56 for (int y = 0; y < 2; y++) {
57 paint.setAntiAlias(!!y);
58 for (int x = 0; x < 2; x++) {
59 paint.setStrokeWidth(x * SkIntToScalar(3));
60
61 SkAutoCanvasRestore acr(canvas, true);
62 canvas->translate(SW * x, SH * y);
bungeman@google.com3c14d0f2011-05-20 14:05:03 +000063 canvas->clipRect(SkRect::MakeLTRB(
64 SkIntToScalar(2), SkIntToScalar(2)
65 , SW - SkIntToScalar(2), SH - SkIntToScalar(2)
66 ));
reed@google.com3b14dc12011-04-04 14:31:36 +000067
scroggof9d61012014-12-15 12:54:51 -080068 SkRandom rand;
reed@google.com3b14dc12011-04-04 14:31:36 +000069 for (int i = 0; i < N; i++) {
70 SkRect r;
71 rnd_rect(&r, rand);
72 canvas->drawRect(r, paint);
73 }
74 }
75 }
76 }
rmistry@google.comd6176b02012-08-23 18:14:13 +000077
reed@google.com3b14dc12011-04-04 14:31:36 +000078private:
79 typedef GM INHERITED;
80};
81
82//////////////////////////////////////////////////////////////////////////////
83
Hal Canarye964c182019-01-23 10:22:01 -050084DEF_GM( return new StrokeRectsGM; )
reed@google.com3b14dc12011-04-04 14:31:36 +000085
86}