• Home
  • Raw
  • Download

Lines Matching refs:zoomedWidth

136    GLint zoomedWidth;  in zoom_span()  local
150 zoomedWidth = x1 - x0; in zoom_span()
151 assert(zoomedWidth > 0); in zoom_span()
152 assert(zoomedWidth <= SWRAST_MAX_WIDTH); in zoom_span()
160 zoomed.end = zoomedWidth; in zoom_span()
213 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
223 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
233 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
245 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
258 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
271 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
285 for (i = 0; i < zoomedWidth; i++) { in zoom_span()
366 GLint i, zoomedWidth; in _swrast_write_zoomed_stencil_span() local
373 zoomedWidth = x1 - x0; in _swrast_write_zoomed_stencil_span()
374 assert(zoomedWidth > 0); in _swrast_write_zoomed_stencil_span()
375 assert(zoomedWidth <= SWRAST_MAX_WIDTH); in _swrast_write_zoomed_stencil_span()
377 zoomedVals = malloc(zoomedWidth * sizeof(GLubyte)); in _swrast_write_zoomed_stencil_span()
382 for (i = 0; i < zoomedWidth; i++) { in _swrast_write_zoomed_stencil_span()
391 _swrast_write_stencil_span(ctx, zoomedWidth, x0, y, zoomedVals); in _swrast_write_zoomed_stencil_span()
411 GLint i, zoomedWidth; in _swrast_write_zoomed_z_span() local
418 zoomedWidth = x1 - x0; in _swrast_write_zoomed_z_span()
419 assert(zoomedWidth > 0); in _swrast_write_zoomed_z_span()
420 assert(zoomedWidth <= SWRAST_MAX_WIDTH); in _swrast_write_zoomed_z_span()
422 zoomedVals = malloc(zoomedWidth * sizeof(GLuint)); in _swrast_write_zoomed_z_span()
427 for (i = 0; i < zoomedWidth; i++) { in _swrast_write_zoomed_z_span()
437 _mesa_pack_uint_z_row(rb->Format, zoomedWidth, zoomedVals, dst); in _swrast_write_zoomed_z_span()