DustinHLand / vkDOOM3

Vulkan DOOM 3 port based on DOOM 3 BFG Edition
GNU General Public License v3.0
850 stars 90 forks source link

Fix pWaitDstStageMask in vkQueueSubmit #1

Closed cforfang closed 7 years ago

cforfang commented 7 years ago

To make sure the image acquired semaphore is signaled before any pixels are rendered to the swapchain image we need to wait at VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT instead of VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT.

DustinHLand commented 7 years ago

Thanks Christian 👍