anv: take depth in to account in anv_GetImageSubresourceLayout
Fixes dEQP-VK.image.subresource_layout.3d* tests on gen9. Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6400>
This commit is contained in:
@@ -1133,7 +1133,8 @@ void anv_GetImageSubresourceLayout(
|
||||
&offset_B, NULL, NULL);
|
||||
layout->offset += offset_B;
|
||||
layout->size = layout->rowPitch * anv_minify(image->extent.height,
|
||||
subresource->mipLevel);
|
||||
subresource->mipLevel) *
|
||||
image->extent.depth;
|
||||
} else {
|
||||
layout->size = surface->isl.size_B;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user