Lines Matching refs:srcX0
112 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_nearest() argument
121 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_nearest()
126 const GLint srcXpos = MIN2(srcX0, srcX1); in blit_nearest()
131 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_nearest()
515 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_linear() argument
522 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_linear()
527 const GLint srcXpos = MIN2(srcX0, srcX1); in blit_linear()
532 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_linear()
743 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _swrast_BlitFramebuffer() argument
766 if (!_mesa_clip_blit(ctx, readFb, drawFb, &srcX0, &srcY0, &srcX1, &srcY1, in _swrast_BlitFramebuffer()
777 if (srcX1 - srcX0 == dstX1 - dstX0 && in _swrast_BlitFramebuffer()
779 srcX0 < srcX1 && in _swrast_BlitFramebuffer()
787 srcX0, srcY0, in _swrast_BlitFramebuffer()
788 srcX1 - srcX0, srcY1 - srcY0, in _swrast_BlitFramebuffer()
803 blit_nearest(ctx, readFb, drawFb, srcX0, srcY0, srcX1, srcY1, in _swrast_BlitFramebuffer()
811 blit_linear(ctx, readFb, drawFb, srcX0, srcY0, srcX1, srcY1, in _swrast_BlitFramebuffer()