summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_swapchain.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* renderer_vulkan: Drop Vulkan-HppReinUsesLisp2020-04-111-68/+87
|
* vk_swapchain: Silence TOCTOU race conditionReinUsesLisp2020-02-261-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.
* vk_blit_screen: Address feedbackReinUsesLisp2020-01-201-1/+1
|
* vk_swapchain: Add support for swapping sRGBReinUsesLisp2019-12-071-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.
* vk_swapchain: Implement a swapchain managerReinUsesLisp2019-03-291-0/+210