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 | #if SK_SUPPORT_GPU |
| 11 | |
| 12 | #include "GrContext.h" |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 13 | #include "GrPath.h" |
| 14 | #include "GrStrokeInfo.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 15 | #include "SkBitmap.h" |
| 16 | #include "SkCanvas.h" |
| 17 | #include "SkColor.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 18 | #include "SkPaint.h" |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 19 | #include "SkPath.h" |
| 20 | #include "SkDashPathEffect.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 21 | #include "SkRRect.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 22 | #include "SkRect.h" |
reed | 69f6f00 | 2014-09-18 06:09:44 -0700 | [diff] [blame] | 23 | #include "SkSurface.h" |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 24 | #include "Test.h" |
| 25 | |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 26 | #include <initializer_list> |
| 27 | |
tfarina@chromium.org | 4ee16bf | 2014-01-10 22:08:27 +0000 | [diff] [blame] | 28 | static void test_drawPathEmpty(skiatest::Reporter*, SkCanvas* canvas) { |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 29 | // Filling an empty path should not crash. |
| 30 | SkPaint paint; |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 31 | SkRect emptyRect = SkRect::MakeEmpty(); |
| 32 | canvas->drawRect(emptyRect, paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 33 | canvas->drawPath(SkPath(), paint); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 34 | canvas->drawOval(emptyRect, paint); |
| 35 | canvas->drawRect(emptyRect, paint); |
| 36 | canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 37 | |
| 38 | // Stroking an empty path should not crash. |
| 39 | paint.setAntiAlias(true); |
| 40 | paint.setStyle(SkPaint::kStroke_Style); |
| 41 | paint.setColor(SK_ColorGRAY); |
| 42 | paint.setStrokeWidth(SkIntToScalar(20)); |
| 43 | paint.setStrokeJoin(SkPaint::kRound_Join); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 44 | canvas->drawRect(emptyRect, paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 45 | canvas->drawPath(SkPath(), paint); |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 46 | canvas->drawOval(emptyRect, paint); |
| 47 | canvas->drawRect(emptyRect, paint); |
| 48 | canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 49 | } |
| 50 | |
fmalita | fbe1c11 | 2015-11-18 20:12:56 -0800 | [diff] [blame] | 51 | static void fill_and_stroke(SkCanvas* canvas, const SkPath& p1, const SkPath& p2, |
| 52 | SkPathEffect* effect) { |
| 53 | SkPaint paint; |
| 54 | paint.setAntiAlias(true); |
| 55 | paint.setPathEffect(effect); |
| 56 | |
| 57 | canvas->drawPath(p1, paint); |
| 58 | canvas->drawPath(p2, paint); |
| 59 | |
| 60 | paint.setStyle(SkPaint::kStroke_Style); |
| 61 | canvas->drawPath(p1, paint); |
| 62 | canvas->drawPath(p2, paint); |
| 63 | } |
| 64 | |
| 65 | static void test_drawSameRectOvals(skiatest::Reporter*, SkCanvas* canvas) { |
| 66 | // Drawing ovals with similar bounds but different points order should not crash. |
| 67 | |
| 68 | SkPath oval1, oval2; |
| 69 | const SkRect rect = SkRect::MakeWH(100, 50); |
| 70 | oval1.addOval(rect, SkPath::kCW_Direction); |
| 71 | oval2.addOval(rect, SkPath::kCCW_Direction); |
| 72 | |
| 73 | fill_and_stroke(canvas, oval1, oval2, nullptr); |
| 74 | |
| 75 | const SkScalar intervals[] = { 1, 1 }; |
| 76 | SkAutoTUnref<SkPathEffect> dashEffect(SkDashPathEffect::Create(intervals, 2, 0)); |
| 77 | fill_and_stroke(canvas, oval1, oval2, dashEffect); |
| 78 | } |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 79 | |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 80 | DEF_GPUTEST_FOR_ALL_CONTEXTS(GpuDrawPath, reporter, context) { |
| 81 | for (auto& test_func : { &test_drawPathEmpty, &test_drawSameRectOvals }) { |
| 82 | for (auto& sampleCount : {0, 4, 16}) { |
reed | 69f6f00 | 2014-09-18 06:09:44 -0700 | [diff] [blame] | 83 | SkImageInfo info = SkImageInfo::MakeN32Premul(255, 255); |
bsalomon | afe3005 | 2015-01-16 07:32:33 -0800 | [diff] [blame] | 84 | SkAutoTUnref<SkSurface> surface( |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 85 | SkSurface::NewRenderTarget(context, SkSurface::kNo_Budgeted, info, |
| 86 | sampleCount, nullptr)); |
kkinnunen | c11a527 | 2015-11-19 09:37:02 -0800 | [diff] [blame] | 87 | if (!surface) { |
| 88 | continue; |
| 89 | } |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 90 | test_func(reporter, surface->getCanvas()); |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | } |
| 94 | |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 95 | DEF_GPUTEST(GrPathKeys, reporter, /*factory*/) { |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 96 | // Keys should not ignore conic weights. |
| 97 | SkPath path1, path2; |
| 98 | path1.setIsVolatile(true); |
| 99 | path2.setIsVolatile(true); |
| 100 | SkPoint p0 = SkPoint::Make(100, 0); |
| 101 | SkPoint p1 = SkPoint::Make(100, 100); |
| 102 | |
| 103 | path1.conicTo(p0, p1, .5f); |
| 104 | path2.conicTo(p0, p1, .7f); |
| 105 | |
| 106 | bool isVolatile; |
| 107 | GrUniqueKey key1, key2; |
| 108 | GrStrokeInfo stroke(SkStrokeRec::kFill_InitStyle); |
| 109 | GrPath::ComputeKey(path1, stroke, &key1, &isVolatile); |
| 110 | GrPath::ComputeKey(path2, stroke, &key2, &isVolatile); |
kkinnunen | f152463 | 2015-11-26 01:51:44 -0800 | [diff] [blame] | 111 | REPORTER_ASSERT(reporter, key1 != key2); |
fmalita | 3b44448 | 2015-11-19 07:28:50 -0800 | [diff] [blame] | 112 | } |
| 113 | |
commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 114 | #endif |