blob: 085ec510603899530280123c13ac3a8bf2b5b92f [file] [log] [blame]
robertphillips@google.comad4d4992013-06-26 17:06:45 +00001/*
2 * Copyright 2013 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
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/SkColor.h"
11#include "include/core/SkPaint.h"
12#include "include/core/SkRect.h"
13#include "include/core/SkScalar.h"
14#include "include/core/SkSize.h"
15#include "include/core/SkString.h"
16#include "include/core/SkTypes.h"
robertphillips@google.comad4d4992013-06-26 17:06:45 +000017
18namespace skiagm {
19
20// Draw rects with various stroke widths at 1/8 pixel increments
21class ThinStrokedRectsGM : public GM {
22public:
23 ThinStrokedRectsGM() {
24 this->setBGColor(0xFF000000);
25 }
26
27protected:
mtklein36352bf2015-03-25 18:17:31 -070028 SkString onShortName() override {
robertphillips@google.comad4d4992013-06-26 17:06:45 +000029 return SkString("thinstrokedrects");
30 }
31
mtklein36352bf2015-03-25 18:17:31 -070032 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070033 return SkISize::Make(240, 320);
robertphillips@google.comad4d4992013-06-26 17:06:45 +000034 }
35
mtklein36352bf2015-03-25 18:17:31 -070036 void onDraw(SkCanvas* canvas) override {
robertphillips@google.comad4d4992013-06-26 17:06:45 +000037
38 SkPaint paint;
39 paint.setColor(SK_ColorWHITE);
40 paint.setStyle(SkPaint::kStroke_Style);
41 paint.setAntiAlias(true);
42
mtkleindbfd7ab2016-09-01 11:24:54 -070043 constexpr SkRect rect = { 0, 0, 10, 10 };
44 constexpr SkRect rect2 = { 0, 0, 20, 20 };
robertphillips@google.comad4d4992013-06-26 17:06:45 +000045
mtkleindbfd7ab2016-09-01 11:24:54 -070046 constexpr SkScalar gStrokeWidths[] = {
robertphillips@google.comad4d4992013-06-26 17:06:45 +000047 4, 2, 1, 0.5f, 0.25f, 0.125f, 0
48 };
49
50 canvas->translate(5, 5);
51 for (int i = 0; i < 8; ++i) {
52 canvas->save();
53 canvas->translate(i*0.125f, i*30.0f);
54 for (size_t j = 0; j < SK_ARRAY_COUNT(gStrokeWidths); ++j) {
55 paint.setStrokeWidth(gStrokeWidths[j]);
56 canvas->drawRect(rect, paint);
57 canvas->translate(15, 0);
58 }
59 canvas->restore();
60 }
61
62 // Draw a second time in red with a scale
63 paint.setColor(SK_ColorRED);
64 canvas->translate(0, 15);
65 for (int i = 0; i < 8; ++i) {
66 canvas->save();
67 canvas->translate(i*0.125f, i*30.0f);
68 canvas->scale(0.5f, 0.5f);
69 for (size_t j = 0; j < SK_ARRAY_COUNT(gStrokeWidths); ++j) {
70 paint.setStrokeWidth(2.0f * gStrokeWidths[j]);
71 canvas->drawRect(rect2, paint);
72 canvas->translate(30, 0);
73 }
74 canvas->restore();
75 }
76 }
77
78private:
79 typedef GM INHERITED;
80};
81
82//////////////////////////////////////////////////////////////////////////////
83
halcanary385fe4d2015-08-26 13:07:48 -070084DEF_GM(return new ThinStrokedRectsGM;)
robertphillips@google.comad4d4992013-06-26 17:06:45 +000085}