From 0ee375ffb094fab0e6dca3ed7dd610908ee9496e Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Wed, 11 Jul 2018 23:36:00 +0200 Subject: [PATCH] Revert "[dxvk] Disable image format list" This reverts commit 04d7f2896a965ecf6a1fc84a4893aec84d838c87. False alarm, although we should correct the format classes at some point. --- src/dxvk/dxvk_image.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;