1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-02 01:24:11 +01:00

[dxvk] Fixed uninitialized value in meta-resolve

This commit is contained in:
Philip Rebohle 2018-06-02 12:20:46 +02:00
parent 9ff17b03f2
commit 34477933ef
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -52,6 +52,7 @@ namespace dxvk {
VkSubpassDescription spInfo;
spInfo.flags = 0;
spInfo.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
spInfo.inputAttachmentCount = 0;
spInfo.pInputAttachments = nullptr;
spInfo.colorAttachmentCount = 1;