1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-18 13:54:16 +01:00

Revert "[dxvk] Disable image format list"

This reverts commit 04d7f2896a965ecf6a1fc84a4893aec84d838c87.

False alarm, although we should correct the format classes
at some point.
This commit is contained in:
Philip Rebohle 2018-07-11 23:36:00 +02:00
parent 336cb6a67b
commit 0ee375ffb0
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -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;