Lines Matching refs:v1
44 static void linex_validate(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w);
45 static void linex(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w);
46 static void aa_linex(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w);
98 const GGLcoord* v1, in triangle_dump_points() argument
106 v1[0]*tri, v1[1]*tri, v1[0], v1[1], in triangle_dump_points()
338 void linex_validate(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w) in linex_validate() argument
347 c->procs.linex(con, v0, v1, w); in linex_validate()
350 static void linex(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord width) in linex() argument
354 v[1][0] = v1[0]; v[1][1] = v1[1]; in linex()
356 v1 = v[1]; in linex()
357 const GGLcoord dx = abs(v0[0] - v1[0]); in linex()
358 const GGLcoord dy = abs(v0[1] - v1[1]); in linex()
367 v[2][0] = v1[0]; v[2][1] = v1[1]; in linex()
377 static void aa_linex(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord width) in aa_linex() argument
381 v[1][0] = v1[0]; v[1][1] = v1[1]; in aa_linex()
383 v1 = v[1]; in aa_linex()
385 const GGLcoord dx = v0[0] - v1[0]; in aa_linex()
386 const GGLcoord dy = v0[1] - v1[1]; in aa_linex()
395 v[2][0] = v1[0]; v[2][1] = v1[1]; in aa_linex()
463 const GGLcoord* v0, const GGLcoord* v1, const GGLcoord* v2) in trianglex_debug() argument
467 aa_trianglex(con,v0,v1,v2); in trianglex_debug()
469 trianglex_big(con,v0,v1,v2); in trianglex_debug()
473 linex(con, v0, v1, TRI_ONE); in trianglex_debug()
474 linex(con, v1, v2, TRI_ONE); in trianglex_debug()
480 const GGLcoord* v0, const GGLcoord* v1, const GGLcoord* v2) in trianglex_xor() argument
482 trianglex_big(con,v0,v1,v2); in trianglex_xor()
483 trianglex_small(con,v0,v1,v2); in trianglex_xor()
493 const GGLcoord* v0, const GGLcoord* v1, const GGLcoord* v2) in trianglex_validate() argument
502 c->procs.trianglex(con, v0, v1, v2); in trianglex_validate()
508 const GGLcoord* v0, const GGLcoord* v1, const GGLcoord* v2) in trianglex_small() argument
516 int32_t x1 = v1[0]; in trianglex_small()
517 int32_t y1 = v1[1]; in trianglex_small()
761 const GGLcoord* v0, const GGLcoord* v1, const GGLcoord* v2) in trianglex_big() argument
770 edge_setup( edges, &num_edges, v0, v1, ymin, ymax ); in trianglex_big()
772 edge_setup( edges, &num_edges, v1, v2, ymin, ymax ); in trianglex_big()