Home | History | Annotate | Download | only in r600

Lines Matching refs:src_box

545 		      struct pipe_resource *src, const struct pipe_box *src_box)
551 dstx % 4 == 0 && src_box->x % 4 == 0 && src_box->width % 4 == 0) {
553 util_blitter_copy_buffer(rctx->blitter, dst, dstx, src, src_box->x, src_box->width);
556 util_resource_copy_region(ctx, dst, 0, dstx, 0, 0, src, 0, src_box);
673 const struct pipe_box *src_box)
679 const struct pipe_box *psbox = src_box;
687 r600_copy_buffer(ctx, dst, dstx, src, src_box);
701 src_box->z, src_box->z + src_box->depth - 1,
706 src_box->z, src_box->z + src_box->depth - 1);
715 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x);
716 sbox.y = util_format_get_nblocksy(orig_info[0].format, src_box->y);
717 sbox.z = src_box->z;
718 sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);
719 sbox.height = util_format_get_nblocksy(orig_info[0].format, src_box->height);
720 sbox.depth = src_box->depth;
735 sbox = *src_box;
736 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x);
737 sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);