From: Axel Davy Date: Sat, 22 Oct 2016 09:59:11 +0000 (+0200) Subject: st/nine: Fix mistake in Volume9 UnlockBox X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe7bb46134162c9a9a18832f1746991aa78121e8;p=mesa.git st/nine: Fix mistake in Volume9 UnlockBox In the format fallback path, the height was used instead of the depth. CC: "12.0 13.0" Signed-off-by: Axel Davy --- diff --git a/src/gallium/state_trackers/nine/volume9.c b/src/gallium/state_trackers/nine/volume9.c index 89565f24732..a31dc0ad88e 100644 --- a/src/gallium/state_trackers/nine/volume9.c +++ b/src/gallium/state_trackers/nine/volume9.c @@ -373,7 +373,7 @@ NineVolume9_UnlockBox( struct NineVolume9 *This ) This->layer_stride_conversion, 0, 0, 0, This->desc.Width, This->desc.Height, - This->desc.Height); + This->desc.Depth); if (!This->data) pipe_transfer_unmap(This->pipe, transfer);