Lines Matching refs:srcx
50 regions_overlap(GLint srcx, GLint srcy,
56 return _mesa_regions_overlap(srcx, srcy, srcx + width, srcy + height,
61 if (srcx > (dstx + ((zoomX > 0.0F) ? (width * zoomX + 1.0F) : 0.0F))) {
65 else if (srcx + width + 1.0F < dstx + ((zoomX > 0.0F) ? 0.0F : (width * zoomX))) {
88 copy_rgba_pixels(struct gl_context *ctx, GLint srcx, GLint srcy,
104 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height,
140 width, srcx, sy + row, p );
164 width, srcx, sy, rgba );
232 copy_depth_pixels( struct gl_context *ctx, GLint srcx, GLint srcy,
255 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height,
285 _swrast_read_depth_span_float(ctx, readRb, width, srcx, ssy, p);
308 _swrast_read_depth_span_float(ctx, readRb, width, srcx, sy, depth);
334 copy_stencil_pixels( struct gl_context *ctx, GLint srcx, GLint srcy,
352 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height,
382 _swrast_read_stencil_span( ctx, rb, width, srcx, ssy, p );
405 _swrast_read_stencil_span( ctx, rb, width, srcx, sy, stencil );
616 GLint srcx, GLint srcy, GLsizei width, GLsizei height,
633 srcx, srcy, width, height, destx, desty,
644 copy_rgba_pixels( ctx, srcx, srcy, width, height, destx, desty );
647 copy_depth_pixels( ctx, srcx, srcy, width, height, destx, desty );
650 copy_stencil_pixels( ctx, srcx, srcy, width, height, destx, desty );
654 copy_depth_pixels(ctx, srcx, srcy, width, height, destx, desty);
655 copy_stencil_pixels(ctx, srcx, srcy, width, height, destx, desty);