summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_texture_cache.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-02-16texture_cache: Implement layered framebuffer attachmentsReinUsesLisp1-0/+4
Layered framebuffer attachments is a feature that allows applications to write attach layered textures to a single attachment. What layer the fragments are written to is decided from the shader using gl_Layer.
2020-01-16vk_texture_cache: Address feedbackReinUsesLisp1-9/+4
2020-01-14vk_texture_cache: Implement generic texture cache on VulkanReinUsesLisp1-0/+244
It currently ignores PBO linearizations since these should be dropped as soon as possible on OpenGL.