Browse Source
Merge pull request #2452 from FernandoS27/raster-cache-fix
Correct possible error on Rasterizer Caches
pull/15/merge
Hexagon12
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/video_core/rasterizer_cache.h
|
|
|
@ -144,8 +144,9 @@ protected: |
|
|
|
|
|
|
|
object->SetIsRegistered(false); |
|
|
|
rasterizer.UpdatePagesCachedCount(object->GetCpuAddr(), object->GetSizeInBytes(), -1); |
|
|
|
const CacheAddr addr = object->GetCacheAddr(); |
|
|
|
interval_cache.subtract({GetInterval(object), ObjectSet{object}}); |
|
|
|
map_cache.erase(object->GetCacheAddr()); |
|
|
|
map_cache.erase(addr); |
|
|
|
} |
|
|
|
|
|
|
|
/// Returns a ticks counter used for tracking when cached objects were last modified |
|
|
|
|