OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 "SkPath.h" | 8 #include "SkPath.h" |
9 | 9 |
10 #if SK_SUPPORT_GPU | 10 #if SK_SUPPORT_GPU |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 path.lineTo( 0.0f, -1.0f); | 229 path.lineTo( 0.0f, -1.0f); |
230 path.lineTo(10000.0f, 0.000001f); | 230 path.lineTo(10000.0f, 0.000001f); |
231 path.lineTo( 0.0f, -30.0f); | 231 path.lineTo( 0.0f, -30.0f); |
232 return path; | 232 return path; |
233 } | 233 } |
234 | 234 |
235 static void test_path(GrDrawTarget* dt, GrRenderTarget* rt, GrResourceProvider*
rp, | 235 static void test_path(GrDrawTarget* dt, GrRenderTarget* rt, GrResourceProvider*
rp, |
236 const SkPath& path) { | 236 const SkPath& path) { |
237 GrTessellatingPathRenderer tess; | 237 GrTessellatingPathRenderer tess; |
238 GrPipelineBuilder pipelineBuilder; | 238 GrPipelineBuilder pipelineBuilder; |
| 239 pipelineBuilder.setXPFactory( |
| 240 GrPorterDuffXPFactory::Create(SkXfermode::kSrc_Mode))->unref(); |
239 pipelineBuilder.setRenderTarget(rt); | 241 pipelineBuilder.setRenderTarget(rt); |
240 GrStrokeInfo stroke(SkStrokeRec::kFill_InitStyle); | 242 GrStrokeInfo stroke(SkStrokeRec::kFill_InitStyle); |
241 GrPathRenderer::DrawPathArgs args; | 243 GrPathRenderer::DrawPathArgs args; |
242 args.fTarget = dt; | 244 args.fTarget = dt; |
243 args.fPipelineBuilder = &pipelineBuilder; | 245 args.fPipelineBuilder = &pipelineBuilder; |
244 args.fResourceProvider = rp; | 246 args.fResourceProvider = rp; |
245 args.fColor = GrColor_WHITE; | 247 args.fColor = GrColor_WHITE; |
246 args.fViewMatrix = &SkMatrix::I(); | 248 args.fViewMatrix = &SkMatrix::I(); |
247 args.fPath = &path; | 249 args.fPath = &path; |
248 args.fStroke = &stroke; | 250 args.fStroke = &stroke; |
(...skipping 30 matching lines...) Expand all Loading... |
279 test_path(dt, rt, rp, create_path_8()); | 281 test_path(dt, rt, rp, create_path_8()); |
280 test_path(dt, rt, rp, create_path_9()); | 282 test_path(dt, rt, rp, create_path_9()); |
281 test_path(dt, rt, rp, create_path_10()); | 283 test_path(dt, rt, rp, create_path_10()); |
282 test_path(dt, rt, rp, create_path_11()); | 284 test_path(dt, rt, rp, create_path_11()); |
283 test_path(dt, rt, rp, create_path_12()); | 285 test_path(dt, rt, rp, create_path_12()); |
284 test_path(dt, rt, rp, create_path_13()); | 286 test_path(dt, rt, rp, create_path_13()); |
285 test_path(dt, rt, rp, create_path_14()); | 287 test_path(dt, rt, rp, create_path_14()); |
286 test_path(dt, rt, rp, create_path_15()); | 288 test_path(dt, rt, rp, create_path_15()); |
287 } | 289 } |
288 #endif | 290 #endif |
OLD | NEW |