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 | |
parent | Merge pull request #7068 from behunin/patch-3 (diff) | |
download | yuzu-8fdb51ab46079941175546242604b08054ca4306.tar yuzu-8fdb51ab46079941175546242604b08054ca4306.tar.gz yuzu-8fdb51ab46079941175546242604b08054ca4306.tar.bz2 yuzu-8fdb51ab46079941175546242604b08054ca4306.tar.lz yuzu-8fdb51ab46079941175546242604b08054ca4306.tar.xz yuzu-8fdb51ab46079941175546242604b08054ca4306.tar.zst yuzu-8fdb51ab46079941175546242604b08054ca4306.zip |
-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> |