summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_fence_manager.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-21buffer_cache: Use boost::intrusive::set for cachingReinUsesLisp1-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.
2020-04-22Address Feedback.Fernando Sahmkow1-1/+1
2020-04-22vk_fence_manager: Initial implementationReinUsesLisp1-0/+74