summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-02-24vk_shader_decompiler: Implement indexed texturesReinUsesLisp1-1/+1
Implement accessing textures through an index. It uses the same interface as OpenGL, the main difference is that Vulkan bindings are forced to be arrayed (the binding index doesn't change for stacked textures in SPIR-V).
2020-01-07vk_compute_pipeline: Initial implementationReinUsesLisp1-0/+112
This abstraction represents a Vulkan compute pipeline.