blob: 3017fb37ac29aa6fc41ef4a2e417f745e0f190fd [file] [log] [blame]
Chris Dalton09a7bb22018-08-31 19:53:15 +08001/*
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"
9#include "include/core/SkCanvas.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040010#include "include/core/SkColor.h"
11#include "include/core/SkMatrix.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkPaint.h"
13#include "include/core/SkPath.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040014#include "include/core/SkPoint.h"
15#include "include/core/SkRect.h"
16#include "include/core/SkSize.h"
17#include "include/core/SkString.h"
18#include "include/core/SkTypes.h"
Chris Dalton31634282020-09-17 12:16:54 -060019#include "include/gpu/GrContextOptions.h"
20#include "include/gpu/GrRecordingContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "src/core/SkGeometry.h"
Chris Dalton31634282020-09-17 12:16:54 -060022#include "src/gpu/GrDrawingManager.h"
23#include "src/gpu/GrRecordingContextPriv.h"
24#include "src/gpu/tessellate/GrTessellationPathRenderer.h"
Chris Dalton09a7bb22018-08-31 19:53:15 +080025
Chris Dalton71e21262020-08-20 09:42:12 -060026static constexpr float kStrokeWidth = 30;
Chris Dalton09a7bb22018-08-31 19:53:15 +080027static constexpr int kCellSize = 200;
Chris Daltonc2ae19c2020-09-09 08:35:13 -060028static constexpr int kNumCols = 5;
Chris Dalton7b807262020-12-10 10:22:50 -070029static constexpr int kNumRows = 5;
Chris Dalton31634282020-09-17 12:16:54 -060030static constexpr int kTestWidth = kNumCols * kCellSize;
31static constexpr int kTestHeight = kNumRows * kCellSize;
Chris Dalton09a7bb22018-08-31 19:53:15 +080032
Chris Dalton71e21262020-08-20 09:42:12 -060033enum class CellFillMode {
34 kStretch,
35 kCenter
36};
37
38struct TrickyCubic {
39 SkPoint fPoints[4];
Chris Dalton5c3e1a92020-09-15 20:18:21 -060040 int fNumPts;
Chris Dalton71e21262020-08-20 09:42:12 -060041 CellFillMode fFillMode;
42 float fScale = 1;
43};
44
Chris Dalton31634282020-09-17 12:16:54 -060045// This is a compilation of cubics that have given strokers grief. Feel free to add more.
Chris Dalton71e21262020-08-20 09:42:12 -060046static const TrickyCubic kTrickyCubics[] = {
Chris Dalton5c3e1a92020-09-15 20:18:21 -060047 {{{122, 737}, {348, 553}, {403, 761}, {400, 760}}, 4, CellFillMode::kStretch},
48 {{{244, 520}, {244, 518}, {1141, 634}, {394, 688}}, 4, CellFillMode::kStretch},
49 {{{550, 194}, {138, 130}, {1035, 246}, {288, 300}}, 4, CellFillMode::kStretch},
50 {{{226, 733}, {556, 779}, {-43, 471}, {348, 683}}, 4, CellFillMode::kStretch},
51 {{{268, 204}, {492, 304}, {352, 23}, {433, 412}}, 4, CellFillMode::kStretch},
52 {{{172, 480}, {396, 580}, {256, 299}, {338, 677}}, 4, CellFillMode::kStretch},
53 {{{731, 340}, {318, 252}, {1026, -64}, {367, 265}}, 4, CellFillMode::kStretch},
54 {{{475, 708}, {62, 620}, {770, 304}, {220, 659}}, 4, CellFillMode::kStretch},
55 {{{0, 0}, {128, 128}, {128, 0}, {0, 128}}, 4, CellFillMode::kCenter}, // Perfect cusp
56 {{{0,.01f}, {128,127.999f}, {128,.01f}, {0,127.99f}}, 4, CellFillMode::kCenter}, // Near-cusp
57 {{{0,-.01f}, {128,128.001f}, {128,-.01f}, {0,128.001f}}, 4, CellFillMode::kCenter}, // Near-cusp
58 {{{0,0}, {0,-10}, {0,-10}, {0,10}}, 4, CellFillMode::kCenter, 1.098283f}, // Flat line with 180
59 {{{10,0}, {0,0}, {20,0}, {10,0}}, 4, CellFillMode::kStretch}, // Flat line with 2 180s
60 {{{39,-39}, {40,-40}, {40,-40}, {0,0}}, 4, CellFillMode::kStretch}, // Flat diagonal with 180
61 {{{40, 40}, {0, 0}, {200, 200}, {0, 0}}, 4, CellFillMode::kStretch}, // Diag w/ an internal 180
62 {{{0,0}, {1e-2f,0}, {-1e-2f,0}, {0,0}}, 4, CellFillMode::kCenter}, // Circle
63 {{{400.75f,100.05f}, {400.75f,100.05f}, {100.05f,300.95f}, {100.05f,300.95f}}, 4,
Chris Daltonc2ae19c2020-09-09 08:35:13 -060064 CellFillMode::kStretch}, // Flat line with no turns
Chris Dalton5c3e1a92020-09-15 20:18:21 -060065 {{{0.5f,0}, {0,0}, {20,0}, {10,0}}, 4, CellFillMode::kStretch}, // Flat line with 2 180s
66 {{{10,0}, {0,0}, {10,0}, {10,0}}, 4, CellFillMode::kStretch}, // Flat line with a 180
Chris Dalton7b807262020-12-10 10:22:50 -070067 {{{1,1}, {2,1}, {1,1}, {1, std::numeric_limits<float>::quiet_NaN()}}, 3,
68 CellFillMode::kStretch}, // Flat QUAD with a cusp
69 {{{1,1}, {100,1}, {25,1}, {.3f, std::numeric_limits<float>::quiet_NaN()}}, 3,
70 CellFillMode::kStretch}, // Flat CONIC with a cusp
71 {{{1,1}, {100,1}, {25,1}, {1.5f, std::numeric_limits<float>::quiet_NaN()}}, 3,
72 CellFillMode::kStretch}, // Flat CONIC with a cusp
Chris Dalton09a7bb22018-08-31 19:53:15 +080073};
74
75static SkRect calc_tight_cubic_bounds(const SkPoint P[4], int depth=5) {
76 if (0 == depth) {
77 SkRect bounds;
Brian Osman788b9162020-02-07 10:36:46 -050078 bounds.fLeft = std::min(std::min(P[0].x(), P[1].x()), std::min(P[2].x(), P[3].x()));
79 bounds.fTop = std::min(std::min(P[0].y(), P[1].y()), std::min(P[2].y(), P[3].y()));
80 bounds.fRight = std::max(std::max(P[0].x(), P[1].x()), std::max(P[2].x(), P[3].x()));
81 bounds.fBottom = std::max(std::max(P[0].y(), P[1].y()), std::max(P[2].y(), P[3].y()));
Chris Dalton09a7bb22018-08-31 19:53:15 +080082 return bounds;
83 }
84
85 SkPoint chopped[7];
86 SkChopCubicAt(P, chopped, .5f);
87 SkRect bounds = calc_tight_cubic_bounds(chopped, depth - 1);
88 bounds.join(calc_tight_cubic_bounds(chopped+3, depth - 1));
89 return bounds;
90}
91
Chris Dalton5c3e1a92020-09-15 20:18:21 -060092static SkPoint lerp(const SkPoint& a, const SkPoint& b, float T) {
93 SkASSERT(1 != T); // The below does not guarantee lerp(a, b, 1) === b.
94 return (b - a) * T + a;
95}
96
Chris Dalton71e21262020-08-20 09:42:12 -060097enum class FillMode {
98 kCenter,
99 kScale
100};
101
Chris Dalton7d979912021-05-11 12:36:51 -0600102static void draw_test(SkCanvas* canvas, SkPaint::Cap cap, SkPaint::Join join) {
103 SkRandom rand;
104
105 if (canvas->recordingContext() &&
106 canvas->recordingContext()->priv().caps()->shaderCaps()->tessellationSupport() &&
107 canvas->recordingContext()->priv().caps()->shaderCaps()->maxTessellationSegments() < 64) {
108 // There are fewer tessellation segments than the spec minimum. It must have been overriden
109 // for testing. Indicate this in the background color.
110 canvas->clear(SkColorSetARGB(255, 64, 0, 0));
111 } else {
112 canvas->clear(SK_ColorBLACK);
113 }
114
Chris Dalton31634282020-09-17 12:16:54 -0600115 SkPaint strokePaint;
116 strokePaint.setAntiAlias(true);
117 strokePaint.setStrokeWidth(kStrokeWidth);
Chris Dalton31634282020-09-17 12:16:54 -0600118 strokePaint.setStyle(SkPaint::kStroke_Style);
Chris Dalton7d979912021-05-11 12:36:51 -0600119 strokePaint.setStrokeCap(cap);
120 strokePaint.setStrokeJoin(join);
Chris Dalton09a7bb22018-08-31 19:53:15 +0800121
Chris Dalton31634282020-09-17 12:16:54 -0600122 for (size_t i = 0; i < SK_ARRAY_COUNT(kTrickyCubics); ++i) {
123 auto [originalPts, numPts, fillMode, scale] = kTrickyCubics[i];
Chris Dalton09a7bb22018-08-31 19:53:15 +0800124
Chris Dalton31634282020-09-17 12:16:54 -0600125 SkASSERT(numPts <= 4);
126 SkPoint p[4];
127 memcpy(p, originalPts, sizeof(SkPoint) * numPts);
128 for (int j = 0; j < numPts; ++j) {
129 p[j] *= scale;
Chris Dalton09a7bb22018-08-31 19:53:15 +0800130 }
Chris Dalton7b807262020-12-10 10:22:50 -0700131 float w = originalPts[3].fX;
Chris Dalton09a7bb22018-08-31 19:53:15 +0800132
Chris Dalton31634282020-09-17 12:16:54 -0600133 auto cellRect = SkRect::MakeXYWH((i % kNumCols) * kCellSize, (i / kNumCols) * kCellSize,
Chris Dalton71e21262020-08-20 09:42:12 -0600134 kCellSize, kCellSize);
135
Chris Dalton5c3e1a92020-09-15 20:18:21 -0600136 SkRect strokeBounds;
137 if (numPts == 4) {
138 strokeBounds = calc_tight_cubic_bounds(p);
139 } else {
140 SkASSERT(numPts == 3);
141 SkPoint asCubic[4] = {p[0], lerp(p[0], p[1], 2/3.f), lerp(p[1], p[2], 1/3.f), p[2]};
142 strokeBounds = calc_tight_cubic_bounds(asCubic);
143 }
Chris Dalton09a7bb22018-08-31 19:53:15 +0800144 strokeBounds.outset(kStrokeWidth, kStrokeWidth);
145
146 SkMatrix matrix;
Chris Dalton71e21262020-08-20 09:42:12 -0600147 if (fillMode == CellFillMode::kStretch) {
Mike Reed2ac6ce82021-01-15 12:26:22 -0500148 matrix = SkMatrix::RectToRect(strokeBounds, cellRect, SkMatrix::kCenter_ScaleToFit);
Chris Dalton71e21262020-08-20 09:42:12 -0600149 } else {
150 matrix.setTranslate(cellRect.x() + kStrokeWidth +
151 (cellRect.width() - strokeBounds.width()) / 2,
152 cellRect.y() + kStrokeWidth +
153 (cellRect.height() - strokeBounds.height()) / 2);
154 }
Chris Dalton09a7bb22018-08-31 19:53:15 +0800155
156 SkAutoCanvasRestore acr(canvas, true);
157 canvas->concat(matrix);
Chris Dalton31634282020-09-17 12:16:54 -0600158 strokePaint.setStrokeWidth(kStrokeWidth / matrix.getMaxScale());
Chris Dalton7d979912021-05-11 12:36:51 -0600159 strokePaint.setColor(rand.nextU() | 0xff808080);
Chris Dalton5c3e1a92020-09-15 20:18:21 -0600160 SkPath path = SkPath().moveTo(p[0]);
161 if (numPts == 4) {
162 path.cubicTo(p[1], p[2], p[3]);
Chris Dalton7b807262020-12-10 10:22:50 -0700163 } else if (w == 1) {
Chris Dalton5c3e1a92020-09-15 20:18:21 -0600164 SkASSERT(numPts == 3);
165 path.quadTo(p[1], p[2]);
Chris Dalton7b807262020-12-10 10:22:50 -0700166 } else {
167 SkASSERT(numPts == 3);
168 path.conicTo(p[1], p[2], w);
Chris Dalton5c3e1a92020-09-15 20:18:21 -0600169 }
Chris Dalton31634282020-09-17 12:16:54 -0600170 canvas->drawPath(path, strokePaint);
171 }
172}
173
174DEF_SIMPLE_GM(trickycubicstrokes, canvas, kTestWidth, kTestHeight) {
Chris Dalton7d979912021-05-11 12:36:51 -0600175 draw_test(canvas, SkPaint::kButt_Cap, SkPaint::kMiter_Join);
176}
177
178DEF_SIMPLE_GM(trickycubicstrokes_roundcaps, canvas, kTestWidth, kTestHeight) {
179 draw_test(canvas, SkPaint::kRound_Cap, SkPaint::kRound_Join);
Chris Dalton31634282020-09-17 12:16:54 -0600180}
181
182class TrickyCubicStrokes_tess_segs_5 : public skiagm::GpuGM {
183 SkString onShortName() override {
184 return SkString("trickycubicstrokes_tess_segs_5");
Chris Dalton09a7bb22018-08-31 19:53:15 +0800185 }
186
Chris Dalton31634282020-09-17 12:16:54 -0600187 SkISize onISize() override {
188 return SkISize::Make(kTestWidth, kTestHeight);
189 }
190
Chris Dalton6756afa2020-09-22 16:47:52 -0600191 // Pick a very small, odd (and better yet, prime) number of segments.
192 //
193 // - Odd because it makes the tessellation strip asymmetric, which will be important to test for
194 // future plans that involve drawing in reverse order.
195 //
196 // - >=4 because the tessellator code will just assume we have enough to combine a miter join
197 // and line in a single patch. (Requires 4 segments. Spec required minimum is 64.)
198 static constexpr int kMaxTessellationSegmentsOverride = 5;
199
Chris Dalton31634282020-09-17 12:16:54 -0600200 void modifyGrContextOptions(GrContextOptions* options) override {
Chris Dalton6756afa2020-09-22 16:47:52 -0600201 options->fMaxTessellationSegmentsOverride = kMaxTessellationSegmentsOverride;
Chris Dalton31634282020-09-17 12:16:54 -0600202 // Only allow the tessellation path renderer.
203 options->fGpuPathRenderers = (GpuPathRenderers)((int)options->fGpuPathRenderers &
204 (int)GpuPathRenderers::kTessellation);
205 }
206
Brian Salomoneebe7352020-12-09 16:37:04 -0500207 DrawResult onDraw(GrRecordingContext* context, GrSurfaceDrawContext*, SkCanvas* canvas,
Chris Dalton31634282020-09-17 12:16:54 -0600208 SkString* errorMsg) override {
209 if (!context->priv().caps()->shaderCaps()->tessellationSupport() ||
210 !GrTessellationPathRenderer::IsSupported(*context->priv().caps())) {
211 errorMsg->set("Tessellation not supported.");
212 return DrawResult::kSkip;
213 }
214 auto opts = context->priv().drawingManager()->testingOnly_getOptionsForPathRendererChain();
215 if (!(opts.fGpuPathRenderers & GpuPathRenderers::kTessellation)) {
216 errorMsg->set("GrTessellationPathRenderer disabled.");
217 return DrawResult::kSkip;
218 }
Chris Dalton6756afa2020-09-22 16:47:52 -0600219 if (context->priv().caps()->shaderCaps()->maxTessellationSegments() !=
220 kMaxTessellationSegmentsOverride) {
221 errorMsg->set("modifyGrContextOptions did not affect maxTessellationSegments. "
222 "(Are you running viewer? If so use '--maxTessellationSegments 5'.)");
223 return DrawResult::kFail;
224 }
Chris Dalton31634282020-09-17 12:16:54 -0600225 // Suppress a tessellator warning message that caps.maxTessellationSegments is too small.
226 GrRecordingContextPriv::AutoSuppressWarningMessages aswm(context);
Chris Dalton7d979912021-05-11 12:36:51 -0600227 draw_test(canvas, SkPaint::kButt_Cap, SkPaint::kMiter_Join);
Chris Dalton31634282020-09-17 12:16:54 -0600228 return DrawResult::kOk;
229 }
Chris Dalton09a7bb22018-08-31 19:53:15 +0800230};
231
Chris Dalton31634282020-09-17 12:16:54 -0600232DEF_GM( return new TrickyCubicStrokes_tess_segs_5; )