| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkTypes.h" | 8 #include "SkTypes.h" |
| 9 | 9 |
| 10 #if SK_SUPPORT_GPU | 10 #if SK_SUPPORT_GPU |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 const SkRect rect = SkRect::MakeWH(100, 50); | 69 const SkRect rect = SkRect::MakeWH(100, 50); |
| 70 oval1.addOval(rect, SkPath::kCW_Direction); | 70 oval1.addOval(rect, SkPath::kCW_Direction); |
| 71 oval2.addOval(rect, SkPath::kCCW_Direction); | 71 oval2.addOval(rect, SkPath::kCCW_Direction); |
| 72 | 72 |
| 73 fill_and_stroke(canvas, oval1, oval2, nullptr); | 73 fill_and_stroke(canvas, oval1, oval2, nullptr); |
| 74 | 74 |
| 75 const SkScalar intervals[] = { 1, 1 }; | 75 const SkScalar intervals[] = { 1, 1 }; |
| 76 fill_and_stroke(canvas, oval1, oval2, SkDashPathEffect::Make(intervals, 2, 0
)); | 76 fill_and_stroke(canvas, oval1, oval2, SkDashPathEffect::Make(intervals, 2, 0
)); |
| 77 } | 77 } |
| 78 | 78 |
| 79 DEF_GPUTEST_FOR_ALL_CONTEXTS(GpuDrawPath, reporter, context) { | 79 DEF_GPUTEST_FOR_ALL_CONTEXTS(GpuDrawPath, reporter, ctxInfo) { |
| 80 for (auto& test_func : { &test_drawPathEmpty, &test_drawSameRectOvals }) { | 80 for (auto& test_func : { &test_drawPathEmpty, &test_drawSameRectOvals }) { |
| 81 for (auto& sampleCount : {0, 4, 16}) { | 81 for (auto& sampleCount : {0, 4, 16}) { |
| 82 SkImageInfo info = SkImageInfo::MakeN32Premul(255, 255); | 82 SkImageInfo info = SkImageInfo::MakeN32Premul(255, 255); |
| 83 auto surface( | 83 auto surface( |
| 84 SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, samp
leCount, nullptr)); | 84 SkSurface::MakeRenderTarget(ctxInfo.fGrContext, SkBudgeted::kNo,
info, sampleCount, |
| 85 nullptr)); |
| 85 if (!surface) { | 86 if (!surface) { |
| 86 continue; | 87 continue; |
| 87 } | 88 } |
| 88 test_func(reporter, surface->getCanvas()); | 89 test_func(reporter, surface->getCanvas()); |
| 89 } | 90 } |
| 90 } | 91 } |
| 91 } | 92 } |
| 92 | 93 |
| 93 DEF_GPUTEST(GrPathKeys, reporter, /*factory*/) { | 94 DEF_GPUTEST(GrPathKeys, reporter, /*factory*/) { |
| 94 // Keys should not ignore conic weights. | 95 // Keys should not ignore conic weights. |
| 95 SkPath path1, path2; | 96 SkPath path1, path2; |
| 96 path1.setIsVolatile(true); | 97 path1.setIsVolatile(true); |
| 97 path2.setIsVolatile(true); | 98 path2.setIsVolatile(true); |
| 98 SkPoint p0 = SkPoint::Make(100, 0); | 99 SkPoint p0 = SkPoint::Make(100, 0); |
| 99 SkPoint p1 = SkPoint::Make(100, 100); | 100 SkPoint p1 = SkPoint::Make(100, 100); |
| 100 | 101 |
| 101 path1.conicTo(p0, p1, .5f); | 102 path1.conicTo(p0, p1, .5f); |
| 102 path2.conicTo(p0, p1, .7f); | 103 path2.conicTo(p0, p1, .7f); |
| 103 | 104 |
| 104 bool isVolatile; | 105 bool isVolatile; |
| 105 GrUniqueKey key1, key2; | 106 GrUniqueKey key1, key2; |
| 106 GrStrokeInfo stroke(SkStrokeRec::kFill_InitStyle); | 107 GrStrokeInfo stroke(SkStrokeRec::kFill_InitStyle); |
| 107 GrPath::ComputeKey(path1, stroke, &key1, &isVolatile); | 108 GrPath::ComputeKey(path1, stroke, &key1, &isVolatile); |
| 108 GrPath::ComputeKey(path2, stroke, &key2, &isVolatile); | 109 GrPath::ComputeKey(path2, stroke, &key2, &isVolatile); |
| 109 REPORTER_ASSERT(reporter, key1 != key2); | 110 REPORTER_ASSERT(reporter, key1 != key2); |
| 110 } | 111 } |
| 111 | 112 |
| 112 #endif | 113 #endif |
| OLD | NEW |