Lines Matching refs:zoomedWidth
137 GLint zoomedWidth; in zoom_span() local
151 zoomedWidth = x1 - x0; in zoom_span()
152 ASSERT(zoomedWidth > 0); in zoom_span()
153 ASSERT(zoomedWidth <= SWRAST_MAX_WIDTH); in zoom_span()
161 zoomed.end = zoomedWidth; in zoom_span()
214 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
224 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
234 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
246 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
259 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
272 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
286 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
367 GLint i, zoomedWidth; in _swrast_write_zoomed_stencil_span() local
374 zoomedWidth = x1 - x0; in _swrast_write_zoomed_stencil_span()
375 ASSERT(zoomedWidth > 0); in _swrast_write_zoomed_stencil_span()
376 ASSERT(zoomedWidth <= SWRAST_MAX_WIDTH); in _swrast_write_zoomed_stencil_span()
378 zoomedVals = (GLubyte *) malloc(zoomedWidth * sizeof(GLubyte)); in _swrast_write_zoomed_stencil_span()
383 for (i = 0; i < zoomedWidth; i++) { in _swrast_write_zoomed_stencil_span()
392 _swrast_write_stencil_span(ctx, zoomedWidth, x0, y, zoomedVals); in _swrast_write_zoomed_stencil_span()
412 GLint i, zoomedWidth; in _swrast_write_zoomed_z_span() local
419 zoomedWidth = x1 - x0; in _swrast_write_zoomed_z_span()
420 ASSERT(zoomedWidth > 0); in _swrast_write_zoomed_z_span()
421 ASSERT(zoomedWidth <= SWRAST_MAX_WIDTH); in _swrast_write_zoomed_z_span()
423 zoomedVals = (GLuint *) malloc(zoomedWidth * sizeof(GLuint)); in _swrast_write_zoomed_z_span()
428 for (i = 0; i < zoomedWidth; i++) { in _swrast_write_zoomed_z_span()
438 _mesa_pack_uint_z_row(rb->Format, zoomedWidth, zoomedVals, dst); in _swrast_write_zoomed_z_span()