diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-09-24 01:13:42 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-09-24 01:13:42 +0200 |
commit | 8fdb51ab46079941175546242604b08054ca4306 (patch) | |
tree | f3af32249457d8ad9509268b7f6fd972eab8d9cc /src | |
parent | 326a449ef091f41ff26f092f3fb6079b925d3567 (diff) |
QueryCache: Flush queries in order of running.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/query_cache.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/query_cache.h b/src/video_core/query_cache.h index aac851253..a19b9f931 100644 --- a/src/video_core/query_cache.h +++ b/src/video_core/query_cache.h @@ -257,9 +257,9 @@ private: void AsyncFlushQuery(VAddr addr) { if (!uncommitted_flushes) { - uncommitted_flushes = std::make_shared<std::unordered_set<VAddr>>(); + uncommitted_flushes = std::make_shared<std::vector<VAddr>>(); } - uncommitted_flushes->insert(addr); + uncommitted_flushes->push_back(addr); } static constexpr std::uintptr_t PAGE_SIZE = 4096; @@ -275,8 +275,8 @@ private: std::array<CounterStream, VideoCore::NumQueryTypes> streams; - std::shared_ptr<std::unordered_set<VAddr>> uncommitted_flushes{}; - std::list<std::shared_ptr<std::unordered_set<VAddr>>> committed_flushes; + std::shared_ptr<std::vector<VAddr>> uncommitted_flushes{}; + std::list<std::shared_ptr<std::vector<VAddr>>> committed_flushes; }; template <class QueryCache, class HostCounter> |