Lines Matching refs:v0
55 const SWvertex *v0,
68 const SWvertex *v0,
75 if (ef[e2]) _swrast_Line( ctx, v2, v0 );
76 if (ef[e0]) _swrast_Line( ctx, v0, v1 );
79 if (ef[e0]) _swrast_Line( ctx, v0, v1 );
81 if (ef[e2]) _swrast_Line( ctx, v2, v0 );
94 const SWvertex *v0,
98 if (ef[e0]) _swrast_Point( ctx, v0 );
119 SWvertex *v0 = &verts[e0];
137 /* save colors/indexes for v0, v1 vertices */
138 COPY_CHAN4(c[0], v0->color);
140 COPY_4V(s[0], v0->attrib[FRAG_ATTRIB_COL1]);
143 /* copy v2 color/indexes to v0, v1 indexes */
144 COPY_CHAN4(v0->color, v2->color);
146 COPY_4V(v0->attrib[FRAG_ATTRIB_COL1], v2->attrib[FRAG_ATTRIB_COL1]);
149 render(ctx, ef, e0, e1, e2, v0, v1, v2);
151 COPY_CHAN4(v0->color, c[0]);
153 COPY_4V(v0->attrib[FRAG_ATTRIB_COL1], s[0]);
157 render(ctx, ef, e0, e1, e2, v0, v1, v2);
231 static void swsetup_line( struct gl_context *ctx, GLuint v0, GLuint v1 )
234 _swrast_Line( ctx, &verts[v0], &verts[v1] );