summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_blit_screen.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-08-03vulkan: Silence more -Wmissing-field-initializer warningsLioncash1-0/+1
2020-07-13video_core: Rearrange pixel format namesReinUsesLisp1-2/+2
Normalizes pixel format names to match Vulkan names. Previous to this commit pixel formats had no convention, leading to confusion and potential bugs.
2020-07-13vk_blit_screen: Make use of designated initializers where applicableLioncash1-334/+384
Now that we make use of C++20, we can use designated initializers to make things a little nicer to read.
2020-04-15vk_blit_screen: Initialize all members in VkPipelineViewportStateCreateInfoReinUsesLisp1-0/+2
When the dynamic state is specified, pViewports and pScissors are ignored, quoting the specification: pViewports is a pointer to an array of VkViewport structures, defining the viewport transforms. If the viewport state is dynamic, this member is ignored. That said, AMD's proprietary driver itself seem to read it regardless of what the specification says.
2020-04-11renderer_vulkan: Drop Vulkan-HppReinUsesLisp1-211/+412
2020-01-20vk_blit_screen: Address feedbackReinUsesLisp1-13/+15
2020-01-20vk_blit_screen: Initial implementationReinUsesLisp1-0/+625
This abstraction takes care of presenting accelerated and non-accelerated or "framebuffer" images to the Vulkan swapchain.