Lines Matching refs:desty
89 GLint width, GLint height, GLint destx, GLint desty) in copy_rgba_pixels() argument
104 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height, in copy_rgba_pixels()
112 if (!overlapping && srcy < desty) { in copy_rgba_pixels()
115 dy = desty + height - 1; in copy_rgba_pixels()
121 dy = desty; in copy_rgba_pixels()
178 _swrast_write_zoomed_rgba_span(ctx, destx, desty, &span, rgba); in copy_rgba_pixels()
234 GLint destx, GLint desty ) in copy_depth_pixels() argument
255 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height, in copy_depth_pixels()
263 if (!overlapping && srcy < desty) { in copy_depth_pixels()
266 dy = desty + height - 1; in copy_depth_pixels()
272 dy = desty; in copy_depth_pixels()
319 _swrast_write_zoomed_depth_span(ctx, destx, desty, &span); in copy_depth_pixels()
336 GLint destx, GLint desty ) in copy_stencil_pixels() argument
352 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height, in copy_stencil_pixels()
360 if (!overlapping && srcy < desty) { in copy_stencil_pixels()
363 dy = desty + height - 1; in copy_stencil_pixels()
369 dy = desty; in copy_stencil_pixels()
412 _swrast_write_zoomed_stencil_span(ctx, destx, desty, width, in copy_stencil_pixels()
614 GLint destx, GLint desty, GLenum type) in _swrast_CopyPixels() argument
630 srcx, srcy, width, height, destx, desty, in _swrast_CopyPixels()
641 copy_rgba_pixels( ctx, srcx, srcy, width, height, destx, desty ); in _swrast_CopyPixels()
644 copy_depth_pixels( ctx, srcx, srcy, width, height, destx, desty ); in _swrast_CopyPixels()
647 copy_stencil_pixels( ctx, srcx, srcy, width, height, destx, desty ); in _swrast_CopyPixels()
651 copy_depth_pixels(ctx, srcx, srcy, width, height, destx, desty); in _swrast_CopyPixels()
652 copy_stencil_pixels(ctx, srcx, srcy, width, height, destx, desty); in _swrast_CopyPixels()