mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
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" <mesa-stable@lists.freedesktop.org> Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
parent
942778099e
commit
fe7bb46134
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue