summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_swapchain.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-02-26vk_swapchain: Silence TOCTOU race conditionReinUsesLisp1-9/+12
It's possible that the window is resized from the moment we ask for its size to the moment a swapchain is created, causing validation issues. To workaround this Vulkan issue request the capabilities again just before creating the swapchain, making the race condition less likely.
2020-01-20vk_blit_screen: Address feedbackReinUsesLisp1-1/+1
2019-12-07vk_swapchain: Add support for swapping sRGBReinUsesLisp1-22/+23
We don't know until the game is running if it's using an sRGB color space or not. Add support for hot-swapping swapchain surface formats.
2019-03-29vk_swapchain: Implement a swapchain managerReinUsesLisp1-0/+210