lavapipe: do not interpret cube-compatible as cubemap

Now that we handle the cubemap-array views properly, we no longer need
to do this. It's allowed in Gallium to create cubemap views of 2d
arrays, so this should work fine.

Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10913>
This commit is contained in:
Erik Faye-Lund 2021-05-27 16:40:11 +02:00 committed by Marge Bot
parent a5f41925a6
commit b92c1a043a
1 changed files with 0 additions and 2 deletions

View File

@ -59,8 +59,6 @@ lvp_image_create(VkDevice _device,
default:
case VK_IMAGE_TYPE_2D:
template.target = pCreateInfo->arrayLayers > 1 ? PIPE_TEXTURE_2D_ARRAY : PIPE_TEXTURE_2D;
if (pCreateInfo->flags & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT)
template.target = pCreateInfo->arrayLayers == 6 ? PIPE_TEXTURE_CUBE : PIPE_TEXTURE_CUBE_ARRAY;
break;
case VK_IMAGE_TYPE_3D:
template.target = PIPE_TEXTURE_3D;