Lines Matching refs:paint
14 void test_concave(SkCanvas* canvas, const SkPaint& paint) { in test_concave() argument
21 canvas->drawPath(path, paint); in test_concave()
25 void test_reverse_concave(SkCanvas* canvas, const SkPaint& paint) { in test_reverse_concave() argument
33 canvas->drawPath(path, paint); in test_reverse_concave()
38 void test_bowtie(SkCanvas* canvas, const SkPaint& paint) { in test_bowtie() argument
46 canvas->drawPath(path, paint); in test_bowtie()
51 void test_fake_bowtie(SkCanvas* canvas, const SkPaint& paint) { in test_fake_bowtie() argument
61 canvas->drawPath(path, paint); in test_fake_bowtie()
67 void test_intruding_vertex(SkCanvas* canvas, const SkPaint& paint) { in test_intruding_vertex() argument
78 canvas->drawPath(path, paint); in test_intruding_vertex()
84 void test_inversion_repeat_vertex(SkCanvas* canvas, const SkPaint& paint) { in test_inversion_repeat_vertex() argument
95 canvas->drawPath(path, paint); in test_inversion_repeat_vertex()
100 void test_fish(SkCanvas* canvas, const SkPaint& paint) { in test_fish() argument
110 canvas->drawPath(path, paint); in test_fish()
116 void test_fast_forward(SkCanvas* canvas, const SkPaint& paint) { in test_fast_forward() argument
126 canvas->drawPath(path, paint); in test_fast_forward()
131 void test_hole(SkCanvas* canvas, const SkPaint& paint) { in test_hole() argument
137 canvas->drawPath(path, paint); in test_hole()
142 void test_star(SkCanvas* canvas, const SkPaint& paint) { in test_star() argument
146 paint); in test_star()
151 void test_twist(SkCanvas* canvas, const SkPaint& paint) { in test_twist() argument
160 canvas->drawPath(path, paint); in test_twist()
165 void test_stairstep(SkCanvas* canvas, const SkPaint& paint) { in test_stairstep() argument
175 canvas->drawPath(path, paint); in test_stairstep()
179 void test_stairstep2(SkCanvas* canvas, const SkPaint& paint) { in test_stairstep2() argument
188 canvas->drawPath(path, paint); in test_stairstep2()
193 void test_overlapping(SkCanvas* canvas, const SkPaint& paint) { in test_overlapping() argument
201 canvas->drawPath(path, paint); in test_overlapping()
207 void test_partners(SkCanvas* canvas, const SkPaint& paint) { in test_partners() argument
221 canvas->drawPath(path, paint); in test_partners()
227 void test_winding_merged_to_zero(SkCanvas* canvas, const SkPaint& paint) { in test_winding_merged_to_zero() argument
239 canvas->drawPath(path, paint); in test_winding_merged_to_zero()
244 void test_monotone_1(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_1() argument
253 canvas->drawPath(path, paint); in test_monotone_1()
258 void test_monotone_2(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_2() argument
266 canvas->drawPath(path, paint); in test_monotone_2()
271 void test_monotone_3(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_3() argument
279 canvas->drawPath(path, paint); in test_monotone_3()
284 void test_monotone_4(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_4() argument
294 canvas->drawPath(path, paint); in test_monotone_4()
299 void test_monotone_5(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_5() argument
307 canvas->drawPath(path, paint); in test_monotone_5()
311 void test_degenerate(SkCanvas* canvas, const SkPaint& paint) { in test_degenerate() argument
321 canvas->drawPath(path, paint); in test_degenerate()
325 void test_coincident_edge(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edge() argument
338 canvas->drawPath(path, paint); in test_coincident_edge()
343 void test_bowtie_coincident_triangle(SkCanvas* canvas, const SkPaint& paint) { in test_bowtie_coincident_triangle() argument
354 canvas->drawPath(path, paint); in test_bowtie_coincident_triangle()
360 void test_collinear_outer_boundary_edge(SkCanvas* canvas, const SkPaint& paint) { in test_collinear_outer_boundary_edge() argument
370 canvas->drawPath(path, paint); in test_collinear_outer_boundary_edge()
375 void test_coincident_edges_1(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_1() argument
385 canvas->drawPath(path, paint); in test_coincident_edges_1()
389 void test_coincident_edges_2(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_2() argument
399 canvas->drawPath(path, paint); in test_coincident_edges_2()
403 void test_coincident_edges_3(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_3() argument
413 canvas->drawPath(path, paint); in test_coincident_edges_3()
417 void test_coincident_edges_4(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_4() argument
427 canvas->drawPath(path, paint); in test_coincident_edges_4()
434 SkPaint paint; variable
436 paint.setAntiAlias(true);
437 paint.setStyle(SkPaint::kFill_Style);
439 test_concave(canvas, paint);
440 test_reverse_concave(canvas, paint);
441 test_bowtie(canvas, paint);
442 test_fake_bowtie(canvas, paint);
443 test_intruding_vertex(canvas, paint);
444 test_fish(canvas, paint);
445 test_fast_forward(canvas, paint);
446 test_hole(canvas, paint);
447 test_star(canvas, paint);
448 test_twist(canvas, paint);
449 test_inversion_repeat_vertex(canvas, paint);
450 test_stairstep(canvas, paint);
451 test_stairstep2(canvas, paint);
452 test_overlapping(canvas, paint);
453 test_partners(canvas, paint);
454 test_winding_merged_to_zero(canvas, paint);
455 test_monotone_1(canvas, paint);
456 test_monotone_2(canvas, paint);
457 test_monotone_3(canvas, paint);
458 test_monotone_4(canvas, paint);
459 test_monotone_5(canvas, paint);
460 test_degenerate(canvas, paint);
461 test_coincident_edge(canvas, paint);
462 test_bowtie_coincident_triangle(canvas, paint);
463 test_collinear_outer_boundary_edge(canvas, paint);
464 test_coincident_edges_1(canvas, paint);
465 test_coincident_edges_2(canvas, paint);
466 test_coincident_edges_3(canvas, paint);
467 test_coincident_edges_4(canvas, paint);