blob: 2bf8c11b5a1e1722c11c0909049e9eb014171ea2 [file] [log] [blame]
Michael Ludwig69858532018-11-28 15:34:34 -05001/*
2 * Copyright 2018 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/SkBlendMode.h"
10#include "include/core/SkCanvas.h"
11#include "include/core/SkColor.h"
12#include "include/core/SkFont.h"
13#include "include/core/SkMatrix.h"
14#include "include/core/SkPaint.h"
15#include "include/core/SkPoint.h"
16#include "include/core/SkRect.h"
17#include "include/core/SkScalar.h"
18#include "include/core/SkShader.h"
19#include "include/core/SkSize.h"
20#include "include/core/SkString.h"
21#include "include/core/SkTileMode.h"
22#include "include/core/SkTypeface.h"
23#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "include/effects/SkGradientShader.h"
Robert Phillipsb7bfbc22020-07-01 12:55:01 -040025#include "include/gpu/GrRecordingContext.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040026#include "include/private/GrTypesPriv.h"
Brian Salomon8f7d9532020-12-23 09:16:59 -050027#include "src/core/SkCanvasPriv.h"
Brian Osman449b1152020-04-15 16:43:00 -040028#include "src/core/SkMatrixProvider.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040029#include "src/gpu/GrPaint.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050030#include "src/gpu/SkGr.h"
Robert Phillips4dca8312021-07-28 15:13:20 -040031#include "src/gpu/v1/SurfaceDrawContext_v1.h"
Robert Phillips3d311a92020-05-05 09:18:50 -040032#include "tools/ToolUtils.h"
Michael Ludwig69858532018-11-28 15:34:34 -050033
Ben Wagner7fde8e12019-05-01 17:28:53 -040034#include <utility>
35
Michael Ludwig69858532018-11-28 15:34:34 -050036static constexpr SkScalar kTileWidth = 40;
37static constexpr SkScalar kTileHeight = 30;
38
39static constexpr int kRowCount = 4;
40static constexpr int kColCount = 3;
41
42static void draw_text(SkCanvas* canvas, const char* text) {
Robert Phillips3d311a92020-05-05 09:18:50 -040043 SkFont font(ToolUtils::create_portable_typeface(), 12);
44 canvas->drawString(text, 0, 0, font, SkPaint());
Michael Ludwig69858532018-11-28 15:34:34 -050045}
46
Michael Ludwig75451902019-01-23 11:14:29 -050047static void draw_gradient_tiles(SkCanvas* canvas, bool alignGradients) {
48 // Always draw the same gradient
Michael Ludwig69858532018-11-28 15:34:34 -050049 static constexpr SkPoint pts[] = { {0.f, 0.f}, {0.25f * kTileWidth, 0.25f * kTileHeight} };
50 static constexpr SkColor colors[] = { SK_ColorBLUE, SK_ColorWHITE };
51
Robert Phillips4dca8312021-07-28 15:13:20 -040052 auto sdc = SkCanvasPriv::TopDeviceSurfaceDrawContext(canvas);
Michael Ludwig75451902019-01-23 11:14:29 -050053
Robert Phillips7a0d3c32021-07-21 15:39:51 -040054 auto rContext = canvas->recordingContext();
Robert Phillips6a6de562019-02-15 15:19:15 -050055
Mike Reedfae8fce2019-04-03 10:27:45 -040056 auto gradient = SkGradientShader::MakeLinear(pts, colors, nullptr, 2, SkTileMode::kMirror);
Michael Ludwig69858532018-11-28 15:34:34 -050057 SkPaint paint;
58 paint.setShader(gradient);
Michael Ludwig75451902019-01-23 11:14:29 -050059
60 for (int i = 0; i < kRowCount; ++i) {
61 for (int j = 0; j < kColCount; ++j) {
62 SkRect tile = SkRect::MakeWH(kTileWidth, kTileHeight);
63 if (alignGradients) {
64 tile.offset(j * kTileWidth, i * kTileHeight);
65 } else {
66 canvas->save();
67 canvas->translate(j * kTileWidth, i * kTileHeight);
68 }
69
70 unsigned aa = SkCanvas::kNone_QuadAAFlags;
71 if (i == 0) {
72 aa |= SkCanvas::kTop_QuadAAFlag;
73 }
74 if (i == kRowCount - 1) {
75 aa |= SkCanvas::kBottom_QuadAAFlag;
76 }
77 if (j == 0) {
78 aa |= SkCanvas::kLeft_QuadAAFlag;
79 }
80 if (j == kColCount - 1) {
81 aa |= SkCanvas::kRight_QuadAAFlag;
82 }
83
Brian Salomon8f7d9532020-12-23 09:16:59 -050084 if (sdc) {
Michael Ludwig75451902019-01-23 11:14:29 -050085 // Use non-public API to leverage general GrPaint capabilities
86 SkMatrix view = canvas->getTotalMatrix();
Brian Osman449b1152020-04-15 16:43:00 -040087 SkSimpleMatrixProvider matrixProvider(view);
Michael Ludwig75451902019-01-23 11:14:29 -050088 GrPaint grPaint;
Robert Phillips7a0d3c32021-07-21 15:39:51 -040089 SkPaintToGrPaint(rContext, sdc->colorInfo(), paint, matrixProvider, &grPaint);
Brian Salomon8f7d9532020-12-23 09:16:59 -050090 sdc->fillRectWithEdgeAA(nullptr, std::move(grPaint), GrAA::kYes,
Michael Ludwig75451902019-01-23 11:14:29 -050091 static_cast<GrQuadAAFlags>(aa), view, tile);
92 } else {
93 // Fallback to solid color on raster backend since the public API only has color
94 SkColor color = alignGradients ? SK_ColorBLUE
95 : (i * kColCount + j) % 2 == 0 ? SK_ColorBLUE
96 : SK_ColorWHITE;
Michael Ludwig926fb892019-03-22 16:37:53 -040097 canvas->experimental_DrawEdgeAAQuad(
98 tile, nullptr, static_cast<SkCanvas::QuadAAFlags>(aa), color,
99 SkBlendMode::kSrcOver);
Michael Ludwig75451902019-01-23 11:14:29 -0500100 }
101
102 if (!alignGradients) {
103 // Pop off the matrix translation when drawing unaligned
104 canvas->restore();
105 }
106 }
107 }
Michael Ludwig69858532018-11-28 15:34:34 -0500108}
109
Michael Ludwig75451902019-01-23 11:14:29 -0500110static void draw_color_tiles(SkCanvas* canvas, bool multicolor) {
Michael Ludwig69858532018-11-28 15:34:34 -0500111 for (int i = 0; i < kRowCount; ++i) {
112 for (int j = 0; j < kColCount; ++j) {
113 SkRect tile = SkRect::MakeXYWH(j * kTileWidth, i * kTileHeight, kTileWidth, kTileHeight);
114
Michael Ludwig75451902019-01-23 11:14:29 -0500115 SkColor4f color;
Michael Ludwig69858532018-11-28 15:34:34 -0500116 if (multicolor) {
Michael Ludwig75451902019-01-23 11:14:29 -0500117 color = {(i + 1.f) / kRowCount, (j + 1.f) / kColCount, .4f, 1.f};
Michael Ludwig69858532018-11-28 15:34:34 -0500118 } else {
Michael Ludwig75451902019-01-23 11:14:29 -0500119 color = {.2f, .8f, .3f, 1.f};
Michael Ludwig69858532018-11-28 15:34:34 -0500120 }
121
Michael Ludwig75451902019-01-23 11:14:29 -0500122 unsigned aa = SkCanvas::kNone_QuadAAFlags;
Michael Ludwig69858532018-11-28 15:34:34 -0500123 if (i == 0) {
Michael Ludwig75451902019-01-23 11:14:29 -0500124 aa |= SkCanvas::kTop_QuadAAFlag;
Michael Ludwig69858532018-11-28 15:34:34 -0500125 }
126 if (i == kRowCount - 1) {
Michael Ludwig75451902019-01-23 11:14:29 -0500127 aa |= SkCanvas::kBottom_QuadAAFlag;
Michael Ludwig69858532018-11-28 15:34:34 -0500128 }
129 if (j == 0) {
Michael Ludwig75451902019-01-23 11:14:29 -0500130 aa |= SkCanvas::kLeft_QuadAAFlag;
Michael Ludwig69858532018-11-28 15:34:34 -0500131 }
132 if (j == kColCount - 1) {
Michael Ludwig75451902019-01-23 11:14:29 -0500133 aa |= SkCanvas::kRight_QuadAAFlag;
Michael Ludwig69858532018-11-28 15:34:34 -0500134 }
Michael Ludwig75451902019-01-23 11:14:29 -0500135
Michael Ludwig926fb892019-03-22 16:37:53 -0400136 canvas->experimental_DrawEdgeAAQuad(
137 tile, nullptr, static_cast<SkCanvas::QuadAAFlags>(aa), color.toSkColor(),
Michael Ludwig75451902019-01-23 11:14:29 -0500138 SkBlendMode::kSrcOver);
Michael Ludwig69858532018-11-28 15:34:34 -0500139 }
140 }
Michael Ludwig69858532018-11-28 15:34:34 -0500141}
142
143static void draw_tile_boundaries(SkCanvas* canvas, const SkMatrix& local) {
144 // Draw grid of red lines at interior tile boundaries.
145 static constexpr SkScalar kLineOutset = 10.f;
146 SkPaint paint;
147 paint.setAntiAlias(true);
148 paint.setColor(SK_ColorRED);
149 paint.setStyle(SkPaint::kStroke_Style);
150 paint.setStrokeWidth(0.f);
151 for (int x = 1; x < kColCount; ++x) {
152 SkPoint pts[] = {{x * kTileWidth, 0}, {x * kTileWidth, kRowCount * kTileHeight}};
153 local.mapPoints(pts, 2);
154 SkVector v = pts[1] - pts[0];
155 v.setLength(v.length() + kLineOutset);
156 canvas->drawLine(pts[1] - v, pts[0] + v, paint);
157 }
158 for (int y = 1; y < kRowCount; ++y) {
159 SkPoint pts[] = {{0, y * kTileHeight}, {kTileWidth * kColCount, y * kTileHeight}};
160 local.mapPoints(pts, 2);
161 SkVector v = pts[1] - pts[0];
162 v.setLength(v.length() + kLineOutset);
163 canvas->drawLine(pts[1] - v, pts[0] + v, paint);
164 }
165}
166
167// Tile renderers (column variation)
Michael Ludwig75451902019-01-23 11:14:29 -0500168typedef void (*TileRenderer)(SkCanvas*);
Michael Ludwig69858532018-11-28 15:34:34 -0500169static TileRenderer kTileSets[] = {
Michael Ludwig75451902019-01-23 11:14:29 -0500170 [](SkCanvas* canvas) { draw_gradient_tiles(canvas, /* aligned */ false); },
171 [](SkCanvas* canvas) { draw_gradient_tiles(canvas, /* aligned */ true); },
172 [](SkCanvas* canvas) { draw_color_tiles(canvas, /* multicolor */ false); },
173 [](SkCanvas* canvas) { draw_color_tiles(canvas, /* multicolor */true); },
Michael Ludwig69858532018-11-28 15:34:34 -0500174};
175static const char* kTileSetNames[] = { "Local", "Aligned", "Green", "Multicolor" };
176static_assert(SK_ARRAY_COUNT(kTileSets) == SK_ARRAY_COUNT(kTileSetNames), "Count mismatch");
177
178namespace skiagm {
179
180class DrawQuadSetGM : public GM {
181private:
Hal Canaryfa3305a2019-07-18 12:36:54 -0400182 SkString onShortName() override { return SkString("draw_quad_set"); }
Michael Ludwig69858532018-11-28 15:34:34 -0500183 SkISize onISize() override { return SkISize::Make(800, 800); }
184
185 void onDraw(SkCanvas* canvas) override {
Michael Ludwig69858532018-11-28 15:34:34 -0500186 SkMatrix rowMatrices[5];
187 // Identity
188 rowMatrices[0].setIdentity();
189 // Translate/scale
190 rowMatrices[1].setTranslate(5.5f, 20.25f);
191 rowMatrices[1].postScale(.9f, .7f);
192 // Rotation
193 rowMatrices[2].setRotate(20.0f);
194 rowMatrices[2].preTranslate(15.f, -20.f);
195 // Skew
196 rowMatrices[3].setSkew(.5f, .25f);
197 rowMatrices[3].preTranslate(-30.f, 0.f);
198 // Perspective
199 SkPoint src[4];
200 SkRect::MakeWH(kColCount * kTileWidth, kRowCount * kTileHeight).toQuad(src);
201 SkPoint dst[4] = {{0, 0},
202 {kColCount * kTileWidth + 10.f, 15.f},
203 {kColCount * kTileWidth - 28.f, kRowCount * kTileHeight + 40.f},
204 {25.f, kRowCount * kTileHeight - 15.f}};
205 SkAssertResult(rowMatrices[4].setPolyToPoly(src, dst, 4));
206 rowMatrices[4].preTranslate(0.f, +10.f);
207 static const char* matrixNames[] = { "Identity", "T+S", "Rotate", "Skew", "Perspective" };
208 static_assert(SK_ARRAY_COUNT(matrixNames) == SK_ARRAY_COUNT(rowMatrices), "Count mismatch");
209
210 // Print a column header
211 canvas->save();
212 canvas->translate(110.f, 20.f);
213 for (size_t j = 0; j < SK_ARRAY_COUNT(kTileSetNames); ++j) {
214 draw_text(canvas, kTileSetNames[j]);
215 canvas->translate(kColCount * kTileWidth + 30.f, 0.f);
216 }
217 canvas->restore();
218 canvas->translate(0.f, 40.f);
219
220 // Render all tile variations
221 for (size_t i = 0; i < SK_ARRAY_COUNT(rowMatrices); ++i) {
222 canvas->save();
223 canvas->translate(10.f, 0.5f * kRowCount * kTileHeight);
224 draw_text(canvas, matrixNames[i]);
225
226 canvas->translate(100.f, -0.5f * kRowCount * kTileHeight);
227 for (size_t j = 0; j < SK_ARRAY_COUNT(kTileSets); ++j) {
228 canvas->save();
229 draw_tile_boundaries(canvas, rowMatrices[i]);
230
231 canvas->concat(rowMatrices[i]);
Michael Ludwig75451902019-01-23 11:14:29 -0500232 kTileSets[j](canvas);
Michael Ludwig69858532018-11-28 15:34:34 -0500233 // Undo the local transformation
234 canvas->restore();
235 // And advance to the next column
236 canvas->translate(kColCount * kTileWidth + 30.f, 0.f);
237 }
238 // Reset back to the left edge
239 canvas->restore();
240 // And advance to the next row
241 canvas->translate(0.f, kRowCount * kTileHeight + 20.f);
242 }
243 }
244};
245
246DEF_GM(return new DrawQuadSetGM();)
247
248} // namespace skiagm