diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-01-05 06:43:54 -0500 |
|---|---|---|
| committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-01-05 14:00:10 -0500 |
| commit | b56ad93bbc9ac38820c1e1cb4b03256dd50aa17a (patch) | |
| tree | 329e2e9e818cf88753b86d01b3351ba1f2d6eb2e /src/video_core/rasterizer_interface.h | |
| parent | 2d0c4f2b1d8a069754725a2fb3597a7506e265a5 (diff) | |
BufferBase: Don't ignore GPU pages.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 6b66ad7b6..1735b6164 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -97,7 +97,7 @@ public: VideoCommon::CacheType which = VideoCommon::CacheType::All) = 0; virtual void InnerInvalidation(std::span<const std::pair<VAddr, std::size_t>> sequences) { - for (const auto [cpu_addr, size] : sequences) { + for (const auto& [cpu_addr, size] : sequences) { InvalidateRegion(cpu_addr, size); } } |
