Searched refs:_Ymin (Results 1 – 23 of 23) sorted by relevance
/third_party/mesa3d/src/mesa/main/ |
D | image.c | 634 if (*destY < buffer->_Ymin) { in _mesa_clip_drawpixels() 635 unpack->SkipRows += (buffer->_Ymin - *destY); in _mesa_clip_drawpixels() 636 *height -= (buffer->_Ymin - *destY); in _mesa_clip_drawpixels() 637 *destY = buffer->_Ymin; in _mesa_clip_drawpixels() 651 if (*destY - *height < buffer->_Ymin) in _mesa_clip_drawpixels() 652 *height -= (buffer->_Ymin - (*destY - *height)); in _mesa_clip_drawpixels() 895 const GLint dstYmin = drawFb->_Ymin; in _mesa_clip_blit()
|
D | accum.c | 81 y = ctx->DrawBuffer->_Ymin; in _mesa_clear_accum_buffer() 83 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in _mesa_clear_accum_buffer() 412 ypos = ctx->DrawBuffer->_Ymin; in accum() 414 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in accum()
|
D | framebuffer.c | 396 buffer->_Ymin = bbox[2]; in _mesa_update_draw_buffer_bounds()
|
D | mtypes.h | 3624 GLint _Ymin, _Ymax; member
|
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_util.h | 136 *h = fb->_Ymax - fb->_Ymin; in get_scissors() 138 *y = (fb->Name ? fb->_Ymin : in get_scissors()
|
D | nv10_context.c | 57 fb->_Ymax == fb->Height && fb->_Ymin == 0; in use_fast_zclear()
|
/third_party/mesa3d/src/mesa/swrast/ |
D | s_clear.c | 117 const GLint y = ctx->DrawBuffer->_Ymin; in clear_rgba_buffer() 118 const GLint height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in clear_rgba_buffer()
|
D | s_depth.c | 640 y = ctx->DrawBuffer->_Ymin; in _swrast_clear_depth_buffer() 642 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in _swrast_clear_depth_buffer() 768 y = ctx->DrawBuffer->_Ymin; in _swrast_clear_depth_stencil_buffer() 770 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in _swrast_clear_depth_stencil_buffer()
|
D | s_zoom.c | 87 r0 = CLAMP(r0, fb->_Ymin, fb->_Ymax); in compute_zoomed_bounds() 88 r1 = CLAMP(r1, fb->_Ymin, fb->_Ymax); in compute_zoomed_bounds()
|
D | s_stencil.c | 627 y = ctx->DrawBuffer->_Ymin; in _swrast_clear_stencil_buffer() 629 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in _swrast_clear_stencil_buffer()
|
D | s_copypix.c | 488 dstY < dstFb->_Ymin || dstY + height > dstFb->_Ymax) { in swrast_fast_copy_pixels()
|
D | s_span.c | 709 const GLint ymin = ctx->DrawBuffer->_Ymin; in clip_span() 1187 assert(span->array->y[i] >= fb->_Ymin); in _swrast_write_rgba_span()
|
/third_party/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_pixel_copy.c | 150 if (!_mesa_clip_to_region(fb->_Xmin, fb->_Ymin, in do_blit_copypixels()
|
D | intel_blit.c | 363 cy = fb->_Ymin; in intelClearWithBlit() 365 ch = fb->_Ymax - fb->_Ymin; in intelClearWithBlit()
|
D | intel_pixel_bitmap.c | 249 if (!_mesa_clip_to_region(fb->_Xmin, fb->_Ymin, in do_blit_bitmap()
|
/third_party/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_pixel_copy.c | 152 if (!_mesa_clip_to_region(fb->_Xmin, fb->_Ymin, in do_blit_copypixels()
|
D | brw_clear.c | 82 fb->_Ymin <= 0 && in noop_scissor()
|
D | brw_blorp.c | 1200 y1 = rb->Height - fb->_Ymin; in do_single_blorp_clear() 1202 y0 = fb->_Ymin; in do_single_blorp_clear() 1399 y1 = rb_height - fb->_Ymin; in brw_blorp_clear_depth_stencil() 1401 y0 = fb->_Ymin; in brw_blorp_clear_depth_stencil()
|
D | brw_pixel_bitmap.c | 248 if (!_mesa_clip_to_region(fb->_Xmin, fb->_Ymin, in do_blit_bitmap()
|
D | brw_meta_util.c | 194 draw_fb->_Xmin, draw_fb->_Ymin, draw_fb->_Xmax, draw_fb->_Ymax, in brw_meta_mirror_clip_and_scissor()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_clear.c | 247 const GLfloat y0 = (GLfloat) ctx->DrawBuffer->_Ymin / fb_height * 2.0f - 1.0f; in clear_with_quad()
|
/third_party/mesa3d/src/mesa/drivers/x11/ |
D | xm_dd.c | 258 const GLint y = ctx->DrawBuffer->_Ymin; in clear_buffers()
|
/third_party/mesa3d/src/mesa/drivers/common/ |
D | meta.c | 1776 const float y0 = ((float) fb->_Ymin / fb->Height) * 2.0f - 1.0f; in meta_clear()
|