Home
last modified time | relevance | path

Searched refs:_Ymax (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/mesa/main/
Dimage.c516 if (*destY + *height > buffer->_Ymax) in _mesa_clip_drawpixels()
517 *height -= (*destY + *height - buffer->_Ymax); in _mesa_clip_drawpixels()
521 if (*destY > buffer->_Ymax) { in _mesa_clip_drawpixels()
522 unpack->SkipRows += (*destY - buffer->_Ymax); in _mesa_clip_drawpixels()
523 *height -= (*destY - buffer->_Ymax); in _mesa_clip_drawpixels()
524 *destY = buffer->_Ymax; in _mesa_clip_drawpixels()
772 const GLint dstYmax = drawFb->_Ymax; in _mesa_clip_blit()
Daccum.c83 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in _mesa_clear_accum_buffer()
414 height = ctx->DrawBuffer->_Ymax - ctx->DrawBuffer->_Ymin; in accum()
Dframebuffer.c398 buffer->_Ymax = bbox[3]; in _mesa_update_draw_buffer_bounds()
Dmtypes.h2695 GLint _Ymin, _Ymax; member
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_clear.c239 const GLfloat y1 = (GLfloat) ctx->DrawBuffer->_Ymax / fb_height * 2.0f - 1.0f; in clear_with_quad()