diff --git a/src/dxvk/dxvk_image.cpp b/src/dxvk/dxvk_image.cpp index 253bda03..da4fba07 100644 --- a/src/dxvk/dxvk_image.cpp +++ b/src/dxvk/dxvk_image.cpp @@ -23,11 +23,9 @@ namespace dxvk { formatList.viewFormatCount = createInfo.viewFormatCount; formatList.pViewFormats = createInfo.viewFormats; - // FIXME enable the image format list. We cannot - // currently use this because of regressions. VkImageCreateInfo info; info.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO; - info.pNext = nullptr; + info.pNext = &formatList; info.flags = createInfo.flags; info.imageType = createInfo.type; info.format = createInfo.format;