Lines Matching refs:paint

16 void test_concave(SkCanvas* canvas, const SkPaint& paint) {  in test_concave()  argument
23 canvas->drawPath(path, paint); in test_concave()
27 void test_reverse_concave(SkCanvas* canvas, const SkPaint& paint) { in test_reverse_concave() argument
35 canvas->drawPath(path, paint); in test_reverse_concave()
40 void test_bowtie(SkCanvas* canvas, const SkPaint& paint) { in test_bowtie() argument
48 canvas->drawPath(path, paint); in test_bowtie()
53 void test_fake_bowtie(SkCanvas* canvas, const SkPaint& paint) { in test_fake_bowtie() argument
63 canvas->drawPath(path, paint); in test_fake_bowtie()
68 void test_fish(SkCanvas* canvas, const SkPaint& paint) { in test_fish() argument
78 canvas->drawPath(path, paint); in test_fish()
83 void test_collinear_edges(SkCanvas* canvas, const SkPaint& paint) { in test_collinear_edges() argument
91 canvas->drawPath(path, paint); in test_collinear_edges()
96 void test_hole(SkCanvas* canvas, const SkPaint& paint) { in test_hole() argument
108 canvas->drawPath(path, paint); in test_hole()
113 void test_star(SkCanvas* canvas, const SkPaint& paint) { in test_star() argument
123 canvas->drawPath(path, paint); in test_star()
128 void test_stairstep(SkCanvas* canvas, const SkPaint& paint) { in test_stairstep() argument
138 canvas->drawPath(path, paint); in test_stairstep()
142 void test_stairstep2(SkCanvas* canvas, const SkPaint& paint) { in test_stairstep2() argument
151 canvas->drawPath(path, paint); in test_stairstep2()
156 void test_overlapping(SkCanvas* canvas, const SkPaint& paint) { in test_overlapping() argument
164 canvas->drawPath(path, paint); in test_overlapping()
169 void test_monotone_1(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_1() argument
178 canvas->drawPath(path, paint); in test_monotone_1()
183 void test_monotone_2(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_2() argument
191 canvas->drawPath(path, paint); in test_monotone_2()
196 void test_monotone_3(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_3() argument
204 canvas->drawPath(path, paint); in test_monotone_3()
209 void test_monotone_4(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_4() argument
219 canvas->drawPath(path, paint); in test_monotone_4()
224 void test_monotone_5(SkCanvas* canvas, const SkPaint& paint) { in test_monotone_5() argument
232 canvas->drawPath(path, paint); in test_monotone_5()
236 void test_degenerate(SkCanvas* canvas, const SkPaint& paint) { in test_degenerate() argument
246 canvas->drawPath(path, paint); in test_degenerate()
250 void test_coincident_edge(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edge() argument
263 canvas->drawPath(path, paint); in test_coincident_edge()
268 void test_bowtie_coincident_triangle(SkCanvas* canvas, const SkPaint& paint) { in test_bowtie_coincident_triangle() argument
279 canvas->drawPath(path, paint); in test_bowtie_coincident_triangle()
284 void test_coincident_edges_1(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_1() argument
294 canvas->drawPath(path, paint); in test_coincident_edges_1()
298 void test_coincident_edges_2(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_2() argument
308 canvas->drawPath(path, paint); in test_coincident_edges_2()
312 void test_coincident_edges_3(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_3() argument
322 canvas->drawPath(path, paint); in test_coincident_edges_3()
326 void test_coincident_edges_4(SkCanvas* canvas, const SkPaint& paint) { in test_coincident_edges_4() argument
336 canvas->drawPath(path, paint); in test_coincident_edges_4()
356 SkPaint paint; in onDraw() local
358 paint.setAntiAlias(true); in onDraw()
359 paint.setStyle(SkPaint::kFill_Style); in onDraw()
361 test_concave(canvas, paint); in onDraw()
362 test_reverse_concave(canvas, paint); in onDraw()
363 test_bowtie(canvas, paint); in onDraw()
364 test_fake_bowtie(canvas, paint); in onDraw()
365 test_fish(canvas, paint); in onDraw()
366 test_collinear_edges(canvas, paint); in onDraw()
367 test_hole(canvas, paint); in onDraw()
368 test_star(canvas, paint); in onDraw()
369 test_stairstep(canvas, paint); in onDraw()
370 test_stairstep2(canvas, paint); in onDraw()
371 test_overlapping(canvas, paint); in onDraw()
372 test_monotone_1(canvas, paint); in onDraw()
373 test_monotone_2(canvas, paint); in onDraw()
374 test_monotone_3(canvas, paint); in onDraw()
375 test_monotone_4(canvas, paint); in onDraw()
376 test_monotone_5(canvas, paint); in onDraw()
377 test_degenerate(canvas, paint); in onDraw()
378 test_coincident_edge(canvas, paint); in onDraw()
379 test_bowtie_coincident_triangle(canvas, paint); in onDraw()
380 test_coincident_edges_1(canvas, paint); in onDraw()
381 test_coincident_edges_2(canvas, paint); in onDraw()
382 test_coincident_edges_3(canvas, paint); in onDraw()
383 test_coincident_edges_4(canvas, paint); in onDraw()