summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_fence_manager.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* buffer_cache: Use boost::intrusive::set for cachingReinUsesLisp2020-05-211-0/+1
| | | | | | | | Instead of using boost::icl::interval_map for caching, use boost::intrusive::set. interval_map is intended as a container where the keys can overlap with one another; we don't need this for caching buffers and a std::set-like data structure that allows us to search with lower_bound is enough.
* Address Feedback.Fernando Sahmkow2020-04-221-1/+1
|
* vk_fence_manager: Initial implementationReinUsesLisp2020-04-221-0/+74