Lines Matching refs:span
56 SWspan span; in _swrast_Bitmap() local
72 INIT_SPAN(span, GL_BITMAP); in _swrast_Bitmap()
73 span.end = width; in _swrast_Bitmap()
74 span.arrayMask = SPAN_XY; in _swrast_Bitmap()
75 _swrast_span_default_attribs(ctx, &span); in _swrast_Bitmap()
86 span.array->x[count] = px + col; in _swrast_Bitmap()
87 span.array->y[count] = py + row; in _swrast_Bitmap()
108 span.array->x[count] = px + col; in _swrast_Bitmap()
109 span.array->y[count] = py + row; in _swrast_Bitmap()
128 span.end = count; in _swrast_Bitmap()
129 _swrast_write_rgba_span(ctx, &span); in _swrast_Bitmap()
130 span.end = 0; in _swrast_Bitmap()
155 SWspan span;
165 INIT_SPAN(span, GL_BITMAP);
166 span.end = width;
167 span.arrayMask = SPAN_MASK;
168 _swrast_span_default_attribs(ctx, &span);
171 span.x = px;
172 span.y = py;
175 for (row=0; row<height; row++, span.y++) {
183 span.array->mask[col] = (*src & mask) ? GL_TRUE : GL_FALSE;
193 _swrast_write_rgba_span(ctx, &span);
203 span.array->mask[col] = (*src & mask) ? GL_TRUE : GL_FALSE;
213 _swrast_write_rgba_span(ctx, &span);