Searched refs:_Xmax (Results 1 – 25 of 30) sorted by relevance
12
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | gen6_scissor_state.c | 55 if (ctx->DrawBuffer->_Xmin == ctx->DrawBuffer->_Xmax || in gen6_upload_scissor_state() 70 scissor->xmax = ctx->DrawBuffer->_Xmax - 1; in gen6_upload_scissor_state() 77 scissor->xmax = ctx->DrawBuffer->_Xmax - 1; in gen6_upload_scissor_state()
|
D | brw_sf_state.c | 86 if (ctx->DrawBuffer->_Xmin == ctx->DrawBuffer->_Xmax || in upload_sf_vp() 101 sfv->scissor.xmax = ctx->DrawBuffer->_Xmax - 1; in upload_sf_vp() 108 sfv->scissor.xmax = ctx->DrawBuffer->_Xmax - 1; in upload_sf_vp()
|
D | intel_pixel_copy.c | 160 fb->_Xmax, fb->_Ymax, in do_blit_copypixels()
|
D | intel_pixel_bitmap.c | 235 fb->_Xmax, fb->_Ymax, in do_blit_bitmap()
|
D | intel_blit.c | 256 cw = fb->_Xmax - fb->_Xmin; in intelClearWithBlit()
|
/external/mesa3d/src/mesa/main/ |
D | framebuffer.c | 454 buffer->_Xmax = buffer->Width; in _mesa_update_draw_buffer_bounds() 464 if (ctx->Scissor.X + ctx->Scissor.Width < buffer->_Xmax) { in _mesa_update_draw_buffer_bounds() 465 buffer->_Xmax = ctx->Scissor.X + ctx->Scissor.Width; in _mesa_update_draw_buffer_bounds() 471 if (buffer->_Xmin > buffer->_Xmax) { in _mesa_update_draw_buffer_bounds() 472 buffer->_Xmin = buffer->_Xmax; in _mesa_update_draw_buffer_bounds() 479 ASSERT(buffer->_Xmin <= buffer->_Xmax); in _mesa_update_draw_buffer_bounds()
|
D | accum.c | 143 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin; in _mesa_clear_accum_buffer() 467 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin; in _mesa_accum()
|
D | image.c | 612 if (*destX + *width > buffer->_Xmax) in _mesa_clip_drawpixels() 613 *width -= (*destX + *width - buffer->_Xmax); in _mesa_clip_drawpixels() 866 const GLint dstXmax = ctx->DrawBuffer->_Xmax; in _mesa_clip_blit()
|
D | clear.c | 190 ctx->DrawBuffer->_Xmin >= ctx->DrawBuffer->_Xmax || in _mesa_Clear()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_aatritemp.h | 268 if (startX >= ctx->DrawBuffer->_Xmax) { 269 startX = ctx->DrawBuffer->_Xmax - 1;
|
D | s_clear.c | 49 const GLint width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin; in clear_rgba_buffer()
|
D | s_zoom.c | 70 c0 = CLAMP(c0, fb->_Xmin, fb->_Xmax); in compute_zoomed_bounds() 71 c1 = CLAMP(c1, fb->_Xmin, fb->_Xmax); in compute_zoomed_bounds()
|
D | s_depth.c | 545 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin; in _swrast_clear_depth_buffer() 672 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin; in _swrast_clear_depth_stencil_buffer()
|
D | s_stencil.c | 567 width = ctx->DrawBuffer->_Xmax - ctx->DrawBuffer->_Xmin; in _swrast_clear_stencil_buffer()
|
D | s_copypix.c | 498 dstX < dstFb->_Xmin || dstX + width > dstFb->_Xmax || in swrast_fast_copy_pixels()
|
D | s_span.c | 704 const GLint xmax = ctx->DrawBuffer->_Xmax; in clip_span() 1186 assert(span->array->x[i] < fb->_Xmax); in _swrast_write_rgba_span()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_pixel_copy.c | 160 fb->_Xmax, fb->_Ymax, in do_blit_copypixels()
|
D | intel_pixel_bitmap.c | 235 fb->_Xmax, fb->_Ymax, in do_blit_bitmap()
|
D | intel_blit.c | 256 cw = fb->_Xmax - fb->_Xmin; in intelClearWithBlit()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_pixel_copy.c | 160 fb->_Xmax, fb->_Ymax, in do_blit_copypixels()
|
D | intel_pixel_bitmap.c | 235 fb->_Xmax, fb->_Ymax, in do_blit_bitmap()
|
D | intel_blit.c | 256 cw = fb->_Xmax - fb->_Xmin; in intelClearWithBlit()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_util.h | 132 *w = fb->_Xmax - fb->_Xmin; in get_scissors()
|
D | nv10_context.c | 55 fb->_Xmax == fb->Width && fb->_Xmin == 0 && in use_fast_zclear()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_clear.c | 202 const GLfloat x1 = (GLfloat) ctx->DrawBuffer->_Xmax / fb_width * 2.0f - 1.0f; in clear_with_quad()
|
12