mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 06:00:14 +01:00
anv: uncompressed views of compressed 3d images are now valid
There was a VUID-VkImageViewCreateInfo-image-04739 in the Vulkan 1.3
spec that said:
If image was created with the
VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT flag and format is a
non-compressed format, viewType must not be VK_IMAGE_VIEW_TYPE_3D
That VUID has since been removed, and when a view of a 3D image is
created, with put the depth into the array_len, so it won't be always 1.
Reviewed-by: Mark Janes <markjanes@swizzler.org>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20803>
(cherry picked from commit 58ababdee6)
This commit is contained in:
parent
aa6b386915
commit
8766da2cdb
2 changed files with 2 additions and 2 deletions
|
|
@ -7546,7 +7546,7 @@
|
|||
"description": "anv: uncompressed views of compressed 3d images are now valid",
|
||||
"nominated": false,
|
||||
"nomination_type": null,
|
||||
"resolution": 4,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2430,7 +2430,7 @@ anv_image_fill_surface_state(struct anv_device *device,
|
|||
*/
|
||||
assert(surface->isl.samples == 1);
|
||||
assert(view.levels == 1);
|
||||
assert(view.array_len == 1);
|
||||
assert(surface->isl.dim == ISL_SURF_DIM_3D || view.array_len == 1);
|
||||
|
||||
ASSERTED bool ok =
|
||||
isl_surf_get_uncompressed_surf(&device->isl_dev, isl_surf, &view,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue