Lines Matching refs:dstx
538 unsigned dstx, unsigned dsty, in r600_clear_render_target() argument
547 dstx, dsty, width, height); in r600_clear_render_target()
556 unsigned dstx, unsigned dsty, in r600_clear_depth_stencil() argument
565 dstx, dsty, width, height); in r600_clear_depth_stencil()
569 static void r600_copy_buffer(struct pipe_context *ctx, struct pipe_resource *dst, unsigned dstx, in r600_copy_buffer() argument
575 r600_cp_dma_copy_buffer(rctx, dst, dstx, src, src_box->x, src_box->width); in r600_copy_buffer()
579 dstx % 4 == 0 && src_box->x % 4 == 0 && src_box->width % 4 == 0) { in r600_copy_buffer()
582 util_blitter_copy_buffer(rctx->blitter, dst, dstx, src, src_box->x, src_box->width); in r600_copy_buffer()
585 util_resource_copy_region(ctx, dst, 0, dstx, 0, 0, src, 0, src_box); in r600_copy_buffer()
597 dstx, struct pipe_resource *src, in r600_copy_global_buffer() argument
627 dstx += 4 * item->start_in_dw; in r600_copy_global_buffer()
639 r600_copy_buffer(ctx, dst, dstx, src, &new_src_box); in r600_copy_global_buffer()
673 unsigned dstx, unsigned dsty, unsigned dstz, in r600_resource_copy_region() argument
689 r600_copy_global_buffer(ctx, dst, dstx, src, src_box); in r600_resource_copy_region()
691 r600_copy_buffer(ctx, dst, dstx, src, src_box); in r600_resource_copy_region()
732 dstx = util_format_get_nblocksx(dst->format, dstx); in r600_resource_copy_region()
754 dstx = util_format_get_nblocksx(dst->format, dstx); in r600_resource_copy_region()
806 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height), in r600_resource_copy_region()