Lines Matching refs:width
128 GLuint x, y, width, height;
143 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin;
146 ctx->Driver.MapRenderbuffer(ctx, accRb, x, y, width, height,
164 for (i = 0; i < width; i++) {
190 GLint xpos, GLint ypos, GLint width, GLint height,
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
215 for (i = 0; i < 4 * width; i++) {
225 for (i = 0; i < 4 * width; i++) {
248 GLint xpos, GLint ypos, GLint width, GLint height,
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
292 rgba = (GLfloat (*)[4]) malloc(width * 4 * sizeof(GLfloat));
298 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, rgba);
301 for (i = 0; i < width; i++) {
310 for (i = 0; i < width; i++) {
342 GLint xpos, GLint ypos, GLint width, GLint height)
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
384 rgba = (GLfloat (*)[4]) malloc(width * 4 * sizeof(GLfloat));
385 dest = (GLfloat (*)[4]) malloc(width * 4 * sizeof(GLfloat));
391 for (i = 0; i < width; i++) {
401 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, dest);
405 for (i = 0; i < width; i++)
409 for (i = 0; i < width; i++)
413 for (i = 0; i < width; i++)
417 for (i = 0; i < width; i++)
422 _mesa_pack_float_rgba_row(colorRb->Format, width,
455 GLint xpos, ypos, width, height;
467 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin;
473 accum_scale_or_bias(ctx, value, xpos, ypos, width, height, GL_TRUE);
478 accum_scale_or_bias(ctx, value, xpos, ypos, width, height, GL_FALSE);
483 accum_or_load(ctx, value, xpos, ypos, width, height, GL_FALSE);
487 accum_or_load(ctx, value, xpos, ypos, width, height, GL_TRUE);
490 accum_return(ctx, value, xpos, ypos, width, height);