summaryrefslogtreecommitdiffstats
path: root/src/video_core/query_cache.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* query_cache: Address feedbackReinUsesLisp2020-02-141-16/+16
|
* query_cache: Fix ambiguity in CacheAddr getterReinUsesLisp2020-02-141-4/+5
|
* query_cache: Add a recursive mutex for concurrent usageReinUsesLisp2020-02-141-0/+6
|
* vk_query_cache: Implement generic query cache on VulkanReinUsesLisp2020-02-141-4/+33
|
* query_cache: Abstract OpenGL implementationReinUsesLisp2020-02-141-0/+323
Abstract the current OpenGL implementation into the VideoCommon namespace and reimplement it on top of that. Doing this avoids repeating code and logic in the Vulkan implementation.