panfrost: Get layer stride of level 0 on staging resources

Staging resources have one level, we shouldn't query the stride of
level > 0.

Fixes: 3c92abe359 ("panfrost: Use panfrost_get_layer_stride() instead of open-coding it")
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8449>
This commit is contained in:
Boris Brezillon
2021-01-12 14:40:18 +01:00
committed by Marge Bot
parent fff77e4b43
commit 6aed981e9d
+5 -1
View File
@@ -929,9 +929,13 @@ panfrost_ptr_map(struct pipe_context *pctx,
/* We don't have s/w routines for AFBC, so use a staging texture */
if (drm_is_afbc(rsrc->layout.modifier)) {
struct panfrost_resource *staging = pan_alloc_staging(ctx, rsrc, level, box);
/* Staging resources have one LOD: level 0. Query the strides
* on this LOD.
*/
transfer->base.stride = staging->layout.slices[0].line_stride;
transfer->base.layer_stride =
panfrost_get_layer_stride(&staging->layout, level);
panfrost_get_layer_stride(&staging->layout, 0);
transfer->staging.rsrc = &staging->base;