blob: 22fecd7a5838ae9e7f2be6cc0a676914c379737b [file] [log] [blame]
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +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 "include/core/SkTypes.h"
halcanary96fcdcc2015-08-27 07:41:13 -07009
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkBitmap.h"
11#include "include/core/SkCanvas.h"
12#include "include/core/SkColor.h"
13#include "include/core/SkPaint.h"
14#include "include/core/SkPath.h"
15#include "include/core/SkRRect.h"
16#include "include/core/SkRect.h"
17#include "include/core/SkSurface.h"
18#include "include/effects/SkDashPathEffect.h"
19#include "include/gpu/GrContext.h"
20#include "src/gpu/GrPath.h"
Michael Ludwig663afe52019-06-03 16:46:19 -040021#include "src/gpu/geometry/GrShape.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "tests/Test.h"
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000023
kkinnunen15302832015-12-01 04:35:26 -080024#include <initializer_list>
25
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000026static void test_drawPathEmpty(skiatest::Reporter*, SkCanvas* canvas) {
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000027 // Filling an empty path should not crash.
28 SkPaint paint;
fmalitafbe1c112015-11-18 20:12:56 -080029 SkRect emptyRect = SkRect::MakeEmpty();
30 canvas->drawRect(emptyRect, paint);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000031 canvas->drawPath(SkPath(), paint);
fmalitafbe1c112015-11-18 20:12:56 -080032 canvas->drawOval(emptyRect, paint);
33 canvas->drawRect(emptyRect, paint);
34 canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000035
36 // Stroking an empty path should not crash.
37 paint.setAntiAlias(true);
38 paint.setStyle(SkPaint::kStroke_Style);
39 paint.setColor(SK_ColorGRAY);
40 paint.setStrokeWidth(SkIntToScalar(20));
41 paint.setStrokeJoin(SkPaint::kRound_Join);
fmalitafbe1c112015-11-18 20:12:56 -080042 canvas->drawRect(emptyRect, paint);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000043 canvas->drawPath(SkPath(), paint);
fmalitafbe1c112015-11-18 20:12:56 -080044 canvas->drawOval(emptyRect, paint);
45 canvas->drawRect(emptyRect, paint);
46 canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint);
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000047}
48
fmalitafbe1c112015-11-18 20:12:56 -080049static void fill_and_stroke(SkCanvas* canvas, const SkPath& p1, const SkPath& p2,
reeda4393342016-03-18 11:22:57 -070050 sk_sp<SkPathEffect> effect) {
fmalitafbe1c112015-11-18 20:12:56 -080051 SkPaint paint;
52 paint.setAntiAlias(true);
53 paint.setPathEffect(effect);
54
55 canvas->drawPath(p1, paint);
56 canvas->drawPath(p2, paint);
57
58 paint.setStyle(SkPaint::kStroke_Style);
59 canvas->drawPath(p1, paint);
60 canvas->drawPath(p2, paint);
61}
62
63static void test_drawSameRectOvals(skiatest::Reporter*, SkCanvas* canvas) {
64 // Drawing ovals with similar bounds but different points order should not crash.
65
66 SkPath oval1, oval2;
67 const SkRect rect = SkRect::MakeWH(100, 50);
68 oval1.addOval(rect, SkPath::kCW_Direction);
69 oval2.addOval(rect, SkPath::kCCW_Direction);
70
71 fill_and_stroke(canvas, oval1, oval2, nullptr);
72
73 const SkScalar intervals[] = { 1, 1 };
reeda4393342016-03-18 11:22:57 -070074 fill_and_stroke(canvas, oval1, oval2, SkDashPathEffect::Make(intervals, 2, 0));
fmalitafbe1c112015-11-18 20:12:56 -080075}
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000076
bsalomon758586c2016-04-06 14:02:39 -070077DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(GpuDrawPath, reporter, ctxInfo) {
kkinnunen15302832015-12-01 04:35:26 -080078 for (auto& test_func : { &test_drawPathEmpty, &test_drawSameRectOvals }) {
Brian Salomonbdecacf2018-02-02 20:32:49 -050079 for (auto& sampleCount : {1, 4, 16}) {
reed69f6f002014-09-18 06:09:44 -070080 SkImageInfo info = SkImageInfo::MakeN32Premul(255, 255);
reede8f30622016-03-23 18:59:25 -070081 auto surface(
bsalomon8b7451a2016-05-11 06:33:06 -070082 SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info,
83 sampleCount, nullptr));
kkinnunenc11a5272015-11-19 09:37:02 -080084 if (!surface) {
85 continue;
86 }
kkinnunen15302832015-12-01 04:35:26 -080087 test_func(reporter, surface->getCanvas());
commit-bot@chromium.org19dd0172013-08-05 13:28:55 +000088 }
89 }
90}
91
Brian Osman2caecd22019-09-25 14:02:26 -040092DEF_GPUTEST_FOR_ALL_CONTEXTS(GrDrawCollapsedPath, reporter, ctxInfo) {
93 // From https://bugs.fuchsia.dev/p/fuchsia/issues/detail?id=37330, it's possible for a convex
94 // path to be accepted by AAConvexPathRenderer, then be transformed to something without a
95 // computable first direction by a perspective matrix.
96 SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
97 auto surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info));
98
99 SkPaint paint;
100 paint.setAntiAlias(true);
101
102 SkPath path;
103 path.moveTo(0, 0);
104 path.lineTo(50, 0);
105 path.lineTo(0, 50);
106 path.close();
107
108 SkMatrix m;
109 m.setAll( 0.966006875f , -0.125156224f , 72.0899811f,
110 -0.00885376986f , -0.112347461f , 64.7121124f,
111 -8.94321693e-06f, -0.00173384184f, 0.998692870f);
112 surface->getCanvas()->setMatrix(m);
113 surface->getCanvas()->drawPath(path, paint);
114 surface->flush();
115}
116
Brian Salomondcfca432017-11-15 15:48:03 -0500117DEF_GPUTEST(GrPathKeys, reporter, /* options */) {
bsalomon7bffcd22016-09-15 13:55:33 -0700118 SkPaint strokePaint;
119 strokePaint.setStyle(SkPaint::kStroke_Style);
120 strokePaint.setStrokeWidth(10.f);
121 GrStyle styles[] = {
122 GrStyle::SimpleFill(),
123 GrStyle::SimpleHairline(),
124 GrStyle(strokePaint)
125 };
fmalita3b444482015-11-19 07:28:50 -0800126
bsalomon7bffcd22016-09-15 13:55:33 -0700127 for (const GrStyle& style : styles) {
128 // Keys should not ignore conic weights.
129 SkPath path1, path2;
bsalomon7bffcd22016-09-15 13:55:33 -0700130 SkPoint p0 = SkPoint::Make(100, 0);
131 SkPoint p1 = SkPoint::Make(100, 100);
fmalita3b444482015-11-19 07:28:50 -0800132
bsalomon7bffcd22016-09-15 13:55:33 -0700133 path1.conicTo(p0, p1, .5f);
134 path2.conicTo(p0, p1, .7f);
135
bsalomon7bffcd22016-09-15 13:55:33 -0700136 GrUniqueKey key1, key2;
bsalomonaa840642016-09-23 12:09:16 -0700137 // We expect these small paths to be keyed based on their data.
138 bool isVolatile;
bsalomon7bffcd22016-09-15 13:55:33 -0700139 GrPath::ComputeKey(GrShape(path1, GrStyle::SimpleFill()), &key1, &isVolatile);
140 REPORTER_ASSERT(reporter, !isVolatile);
141 REPORTER_ASSERT(reporter, key1.isValid());
142 GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &key2, &isVolatile);
143 REPORTER_ASSERT(reporter, !isVolatile);
144 REPORTER_ASSERT(reporter, key1.isValid());
145 REPORTER_ASSERT(reporter, key1 != key2);
bsalomonaa840642016-09-23 12:09:16 -0700146 {
147 GrUniqueKey tempKey;
148 path1.setIsVolatile(true);
149 GrPath::ComputeKey(GrShape(path1, style), &key1, &isVolatile);
150 REPORTER_ASSERT(reporter, isVolatile);
151 REPORTER_ASSERT(reporter, !tempKey.isValid());
152 }
bsalomon7bffcd22016-09-15 13:55:33 -0700153
154 // Ensure that recreating the GrShape doesn't change the key.
155 {
156 GrUniqueKey tempKey;
bsalomonaa840642016-09-23 12:09:16 -0700157 GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &tempKey, &isVolatile);
158 REPORTER_ASSERT(reporter, key2 == tempKey);
bsalomon7bffcd22016-09-15 13:55:33 -0700159 }
160
161 // Try a large path that is too big to be keyed off its data.
162 SkPath path3;
163 SkPath path4;
164 for (int i = 0; i < 1000; ++i) {
165 SkScalar s = SkIntToScalar(i);
166 path3.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.5f + s / 2000.f);
167 path4.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.3f + s / 2000.f);
168 }
169
170 GrUniqueKey key3, key4;
171 // These aren't marked volatile and so should have keys
172 GrPath::ComputeKey(GrShape(path3, style), &key3, &isVolatile);
173 REPORTER_ASSERT(reporter, !isVolatile);
174 REPORTER_ASSERT(reporter, key3.isValid());
175 GrPath::ComputeKey(GrShape(path4, style), &key4, &isVolatile);
176 REPORTER_ASSERT(reporter, !isVolatile);
177 REPORTER_ASSERT(reporter, key4.isValid());
178 REPORTER_ASSERT(reporter, key3 != key4);
179
180 {
181 GrUniqueKey tempKey;
182 path3.setIsVolatile(true);
183 GrPath::ComputeKey(GrShape(path3, style), &key1, &isVolatile);
184 REPORTER_ASSERT(reporter, isVolatile);
185 REPORTER_ASSERT(reporter, !tempKey.isValid());
186 }
187 }
fmalita3b444482015-11-19 07:28:50 -0800188}