From: Marek Olšák Date: Sun, 8 Jul 2012 01:18:48 +0000 (+0200) Subject: r600g: fix uploading non-zero mipmap levels of depth textures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e773a48a3bf9ab839f10794506c0a492b7eab883;p=mesa.git r600g: fix uploading non-zero mipmap levels of depth textures This fixes piglit/depth-level-clamp. Reviewed-by: Alex Deucher --- diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index a6a83cab41a..d16c25294d7 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -926,8 +926,9 @@ void r600_texture_transfer_destroy(struct pipe_context *ctx, u_box_origin_2d(texture->width0, texture->height0, &sbox); - ctx->resource_copy_region(ctx, texture, 0, 0, 0, 0, - &rtransfer->staging->b.b, 0, + ctx->resource_copy_region(ctx, texture, transfer->level, + 0, 0, transfer->box.z, + &rtransfer->staging->b.b, transfer->level, &sbox); } } else if (rtransfer->staging) {