Lines Matching defs:width
65 GLuint x, y, width, height;
82 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin;
85 _mesa_map_renderbuffer(ctx, accRb, x, y, width, height,
104 for (i = 0; i < width; i++) {
130 GLint xpos, GLint ypos, GLint width, GLint height,
140 _mesa_map_renderbuffer(ctx, accRb, xpos, ypos, width, height,
156 for (i = 0; i < 4 * width; i++) {
166 for (i = 0; i < 4 * width; i++) {
189 GLint xpos, GLint ypos, GLint width, GLint height,
211 _mesa_map_renderbuffer(ctx, accRb, xpos, ypos, width, height,
220 _mesa_map_renderbuffer(ctx, colorRb, xpos, ypos, width, height,
235 rgba = malloc(width * 4 * sizeof(GLfloat));
241 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, rgba);
244 for (i = 0; i < width; i++) {
253 for (i = 0; i < width; i++) {
285 GLint xpos, GLint ypos, GLint width, GLint height)
294 _mesa_map_renderbuffer(ctx, accRb, xpos, ypos, width, height,
315 _mesa_map_renderbuffer(ctx, colorRb, xpos, ypos, width, height,
328 rgba = malloc(width * 4 * sizeof(GLfloat));
329 dest = malloc(width * 4 * sizeof(GLfloat));
335 for (i = 0; i < width; i++) {
345 _mesa_unpack_rgba_row(colorRb->Format, width, colorMap, dest);
349 for (i = 0; i < width; i++)
353 for (i = 0; i < width; i++)
357 for (i = 0; i < width; i++)
361 for (i = 0; i < width; i++)
366 _mesa_pack_float_rgba_row(colorRb->Format, width,
399 GLint xpos, ypos, width, height;
413 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin;
419 accum_scale_or_bias(ctx, value, xpos, ypos, width, height, GL_TRUE);
424 accum_scale_or_bias(ctx, value, xpos, ypos, width, height, GL_FALSE);
429 accum_or_load(ctx, value, xpos, ypos, width, height, GL_FALSE);
433 accum_or_load(ctx, value, xpos, ypos, width, height, GL_TRUE);
436 accum_return(ctx, value, xpos, ypos, width, height);