summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-01-24vk_shader_decompiler: Disable default values on unwritten render targetsReinUsesLisp1-3/+0
Some games like The Legend of Zelda: Breath of the Wild assign render targets without writing them from the fragment shader. This generates Vulkan validation errors, so silence these I previously introduced a commit to set "vec4(0, 0, 0, 1)" for these attachments. The problem is that this is not what games expect. This commit reverts that change.
2020-01-07vk_pipeline_cache: Initial implementationReinUsesLisp1-0/+352
Given a pipeline key, this cache returns a pipeline abstraction (for graphics or compute).
2020-01-07vk_pipeline_cache: Add file and define descriptor update template fillerReinUsesLisp1-0/+43
This function allows us to share code between compute and graphics pipelines compilation.