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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_GL_CONTEXTS(GpuDrawPath, reporter, ctxInfo) { | 79 DEF_GPUTEST_FOR_ALL_GL_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(ctxInfo.fGrContext, SkBudgeted::kNo,
info, sampleCount, | 84 SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo
, info, |
85 nullptr)); | 85 sampleCount, nullptr)); |
86 if (!surface) { | 86 if (!surface) { |
87 continue; | 87 continue; |
88 } | 88 } |
89 test_func(reporter, surface->getCanvas()); | 89 test_func(reporter, surface->getCanvas()); |
90 } | 90 } |
91 } | 91 } |
92 } | 92 } |
93 | 93 |
94 DEF_GPUTEST(GrPathKeys, reporter, /*factory*/) { | 94 DEF_GPUTEST(GrPathKeys, reporter, /*factory*/) { |
95 // Keys should not ignore conic weights. | 95 // Keys should not ignore conic weights. |
96 SkPath path1, path2; | 96 SkPath path1, path2; |
97 path1.setIsVolatile(true); | 97 path1.setIsVolatile(true); |
98 path2.setIsVolatile(true); | 98 path2.setIsVolatile(true); |
99 SkPoint p0 = SkPoint::Make(100, 0); | 99 SkPoint p0 = SkPoint::Make(100, 0); |
100 SkPoint p1 = SkPoint::Make(100, 100); | 100 SkPoint p1 = SkPoint::Make(100, 100); |
101 | 101 |
102 path1.conicTo(p0, p1, .5f); | 102 path1.conicTo(p0, p1, .5f); |
103 path2.conicTo(p0, p1, .7f); | 103 path2.conicTo(p0, p1, .7f); |
104 | 104 |
105 bool isVolatile; | 105 bool isVolatile; |
106 GrUniqueKey key1, key2; | 106 GrUniqueKey key1, key2; |
107 GrPath::ComputeKey(path1, GrStyle::SimpleFill(), &key1, &isVolatile); | 107 GrPath::ComputeKey(path1, GrStyle::SimpleFill(), &key1, &isVolatile); |
108 GrPath::ComputeKey(path2, GrStyle::SimpleFill(), &key2, &isVolatile); | 108 GrPath::ComputeKey(path2, GrStyle::SimpleFill(), &key2, &isVolatile); |
109 REPORTER_ASSERT(reporter, key1 != key2); | 109 REPORTER_ASSERT(reporter, key1 != key2); |
110 } | 110 } |
111 | 111 |
112 #endif | 112 #endif |
OLD | NEW |