zink: pass all modifiers through to image creation

let the driver figure these out after zink guarantees that at least one of them
will work

Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12857>
This commit is contained in:
Mike Blumenkrantz 2021-09-14 13:45:42 -04:00
parent 4e6d78c3b0
commit ed794207b5
1 changed files with 2 additions and 2 deletions

View File

@ -525,8 +525,8 @@ resource_object_create(struct zink_screen *screen, const struct pipe_resource *t
} else if (ici.tiling == VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT) {
idfmlci.sType = VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_LIST_CREATE_INFO_EXT;
idfmlci.pNext = ici.pNext;
idfmlci.drmFormatModifierCount = 1;
idfmlci.pDrmFormatModifiers = &mod;
idfmlci.drmFormatModifierCount = modifiers_count;
idfmlci.pDrmFormatModifiers = modifiers;
ici.pNext = &idfmlci;
} else if (ici.tiling == VK_IMAGE_TILING_OPTIMAL) {
// TODO: remove for wsi