Lines Matching refs:array
196 span.array = SWRAST_CONTEXT(ctx)->SpanArrays + omp_get_thread_num();
224 SWspanarrays *array = span.array;
225 array->coverage[count] = coverage;
227 array->z[count] = (GLuint) solve_plane(cx, cy, zPlane);
229 array->rgba[count][RCOMP] = solve_plane_chan(cx, cy, rPlane);
230 array->rgba[count][GCOMP] = solve_plane_chan(cx, cy, gPlane);
231 array->rgba[count][BCOMP] = solve_plane_chan(cx, cy, bPlane);
232 array->rgba[count][ACOMP] = solve_plane_chan(cx, cy, aPlane);
265 span.array = SWRAST_CONTEXT(ctx)->SpanArrays + omp_get_thread_num();
286 SWspanarrays *array = span.array;
288 array->coverage[ix] = coverage;
290 array->z[ix] = (GLuint) solve_plane(cx, cy, zPlane);
292 array->rgba[ix][RCOMP] = solve_plane_chan(cx, cy, rPlane);
293 array->rgba[ix][GCOMP] = solve_plane_chan(cx, cy, gPlane);
294 array->rgba[ix][BCOMP] = solve_plane_chan(cx, cy, bPlane);
295 array->rgba[ix][ACOMP] = solve_plane_chan(cx, cy, aPlane);
320 SWspanarrays *array = span.array;
323 array->coverage[j] = array->coverage[j + left];
324 COPY_CHAN4(array->rgba[j], array->rgba[j + left]);
326 array->z[j] = array->z[j + left];