diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-05-04 02:36:18 +0200 | 
|---|---|---|
| committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-05-07 23:46:12 +0200 | 
| commit | ab0c0a469c29900314847520f30d6edb914fa028 (patch) | |
| tree | 025e810bce98ec382441e33958f34aa8c0286340 | |
| parent | 92da86290c5ea657ae918bfe36071bdf7ac15075 (diff) | |
Query cache: stop updating pages as it's not affected by cpu writes
| -rw-r--r-- | src/video_core/query_cache.h | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/src/video_core/query_cache.h b/src/video_core/query_cache.h index 941de95c1..1528cc1dd 100644 --- a/src/video_core/query_cache.h +++ b/src/video_core/query_cache.h @@ -255,7 +255,6 @@ private:                  if (!in_range(query)) {                      continue;                  } -                rasterizer.UpdatePagesCachedCount(query.GetCpuAddr(), query.SizeInBytes(), -1);                  AsyncJobId async_job_id = query.GetAsyncJob();                  auto flush_result = query.Flush(async);                  if (async_job_id == NULL_ASYNC_JOB_ID) { @@ -273,7 +272,6 @@ private:      /// Registers the passed parameters as cached and returns a pointer to the stored cached query.      CachedQuery* Register(VideoCore::QueryType type, VAddr cpu_addr, u8* host_ptr, bool timestamp) { -        rasterizer.UpdatePagesCachedCount(cpu_addr, CachedQuery::SizeInBytes(timestamp), 1);          const u64 page = static_cast<u64>(cpu_addr) >> YUZU_PAGEBITS;          return &cached_queries[page].emplace_back(static_cast<QueryCache&>(*this), type, cpu_addr,                                                    host_ptr); | 
