commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 8 | #include "SkTypes.h" |
| 9 | |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 10 | #include "GrContext.h" |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 11 | #include "GrPath.h" |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 12 | #include "GrShape.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 13 | #include "SkBitmap.h" |
| 14 | #include "SkCanvas.h" |
| 15 | #include "SkColor.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 16 | #include "SkPaint.h" |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 17 | #include "SkPath.h" |
| 18 | #include "SkDashPathEffect.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 19 | #include "SkRRect.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 20 | #include "SkRect.h" |
reed | 69f6f00 | 2014-09-18 06:09:44 -0700 | [diff] [blame] | 21 | #include "SkSurface.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 22 | #include "Test.h" |
| 23 | |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 24 | #include <initializer_list> |
| 25 | |
tfarina@chromium.org | 4ee16bf | 2014-01-10 22:08:27 +0000 | [diff] [blame] | 26 | static void test_drawPathEmpty(skiatest::Reporter*, SkCanvas* canvas) { |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 27 | // Filling an empty path should not crash. |
| 28 | SkPaint paint; |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 29 | SkRect emptyRect = SkRect::MakeEmpty(); |
| 30 | canvas->drawRect(emptyRect, paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 31 | canvas->drawPath(SkPath(), paint); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 32 | canvas->drawOval(emptyRect, paint); |
| 33 | canvas->drawRect(emptyRect, paint); |
| 34 | canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 35 | |
| 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); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 42 | canvas->drawRect(emptyRect, paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 43 | canvas->drawPath(SkPath(), paint); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 44 | canvas->drawOval(emptyRect, paint); |
| 45 | canvas->drawRect(emptyRect, paint); |
| 46 | canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 47 | } |
| 48 | |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 49 | static void fill_and_stroke(SkCanvas* canvas, const SkPath& p1, const SkPath& p2, |
reed | a439334 | 2016-03-18 11:22:57 -0700 | [diff] [blame] | 50 | sk_sp<SkPathEffect> effect) { |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 51 | 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 | |
| 63 | static 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 }; |
reed | a439334 | 2016-03-18 11:22:57 -0700 | [diff] [blame] | 74 | fill_and_stroke(canvas, oval1, oval2, SkDashPathEffect::Make(intervals, 2, 0)); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 75 | } |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 76 | |
bsalomon | 758586c | 2016-04-06 14:02:39 -0700 | [diff] [blame] | 77 | DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(GpuDrawPath, reporter, ctxInfo) { |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 78 | for (auto& test_func : { &test_drawPathEmpty, &test_drawSameRectOvals }) { |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 79 | for (auto& sampleCount : {1, 4, 16}) { |
reed | 69f6f00 | 2014-09-18 06:09:44 -0700 | [diff] [blame] | 80 | SkImageInfo info = SkImageInfo::MakeN32Premul(255, 255); |
reed | e8f3062 | 2016-03-23 18:59:25 -0700 | [diff] [blame] | 81 | auto surface( |
bsalomon | 8b7451a | 2016-05-11 06:33:06 -0700 | [diff] [blame] | 82 | SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info, |
| 83 | sampleCount, nullptr)); |
kkinnunen | c11a527 | 2015-11-19 09:37:02 -0800 | [diff] [blame] | 84 | if (!surface) { |
| 85 | continue; |
| 86 | } |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 87 | test_func(reporter, surface->getCanvas()); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | } |
| 91 | |
Brian Salomon | dcfca43 | 2017-11-15 15:48:03 -0500 | [diff] [blame] | 92 | DEF_GPUTEST(GrPathKeys, reporter, /* options */) { |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 93 | SkPaint strokePaint; |
| 94 | strokePaint.setStyle(SkPaint::kStroke_Style); |
| 95 | strokePaint.setStrokeWidth(10.f); |
| 96 | GrStyle styles[] = { |
| 97 | GrStyle::SimpleFill(), |
| 98 | GrStyle::SimpleHairline(), |
| 99 | GrStyle(strokePaint) |
| 100 | }; |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 101 | |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 102 | for (const GrStyle& style : styles) { |
| 103 | // Keys should not ignore conic weights. |
| 104 | SkPath path1, path2; |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 105 | SkPoint p0 = SkPoint::Make(100, 0); |
| 106 | SkPoint p1 = SkPoint::Make(100, 100); |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 107 | |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 108 | path1.conicTo(p0, p1, .5f); |
| 109 | path2.conicTo(p0, p1, .7f); |
| 110 | |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 111 | GrUniqueKey key1, key2; |
bsalomon | aa84064 | 2016-09-23 12:09:16 -0700 | [diff] [blame] | 112 | // We expect these small paths to be keyed based on their data. |
| 113 | bool isVolatile; |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 114 | GrPath::ComputeKey(GrShape(path1, GrStyle::SimpleFill()), &key1, &isVolatile); |
| 115 | REPORTER_ASSERT(reporter, !isVolatile); |
| 116 | REPORTER_ASSERT(reporter, key1.isValid()); |
| 117 | GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &key2, &isVolatile); |
| 118 | REPORTER_ASSERT(reporter, !isVolatile); |
| 119 | REPORTER_ASSERT(reporter, key1.isValid()); |
| 120 | REPORTER_ASSERT(reporter, key1 != key2); |
bsalomon | aa84064 | 2016-09-23 12:09:16 -0700 | [diff] [blame] | 121 | { |
| 122 | GrUniqueKey tempKey; |
| 123 | path1.setIsVolatile(true); |
| 124 | GrPath::ComputeKey(GrShape(path1, style), &key1, &isVolatile); |
| 125 | REPORTER_ASSERT(reporter, isVolatile); |
| 126 | REPORTER_ASSERT(reporter, !tempKey.isValid()); |
| 127 | } |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 128 | |
| 129 | // Ensure that recreating the GrShape doesn't change the key. |
| 130 | { |
| 131 | GrUniqueKey tempKey; |
bsalomon | aa84064 | 2016-09-23 12:09:16 -0700 | [diff] [blame] | 132 | GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &tempKey, &isVolatile); |
| 133 | REPORTER_ASSERT(reporter, key2 == tempKey); |
bsalomon | 7bffcd2 | 2016-09-15 13:55:33 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | // Try a large path that is too big to be keyed off its data. |
| 137 | SkPath path3; |
| 138 | SkPath path4; |
| 139 | for (int i = 0; i < 1000; ++i) { |
| 140 | SkScalar s = SkIntToScalar(i); |
| 141 | path3.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.5f + s / 2000.f); |
| 142 | path4.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.3f + s / 2000.f); |
| 143 | } |
| 144 | |
| 145 | GrUniqueKey key3, key4; |
| 146 | // These aren't marked volatile and so should have keys |
| 147 | GrPath::ComputeKey(GrShape(path3, style), &key3, &isVolatile); |
| 148 | REPORTER_ASSERT(reporter, !isVolatile); |
| 149 | REPORTER_ASSERT(reporter, key3.isValid()); |
| 150 | GrPath::ComputeKey(GrShape(path4, style), &key4, &isVolatile); |
| 151 | REPORTER_ASSERT(reporter, !isVolatile); |
| 152 | REPORTER_ASSERT(reporter, key4.isValid()); |
| 153 | REPORTER_ASSERT(reporter, key3 != key4); |
| 154 | |
| 155 | { |
| 156 | GrUniqueKey tempKey; |
| 157 | path3.setIsVolatile(true); |
| 158 | GrPath::ComputeKey(GrShape(path3, style), &key1, &isVolatile); |
| 159 | REPORTER_ASSERT(reporter, isVolatile); |
| 160 | REPORTER_ASSERT(reporter, !tempKey.isValid()); |
| 161 | } |
| 162 | } |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 163 | } |