Skip to content
Snippets Groups Projects
Commit 0966665f authored by Fernando Sahmkow's avatar Fernando Sahmkow Committed by ReinUsesLisp
Browse files

texture_cache: Only load on recycle with accurate GPU.

Testing so far has proven this to be quite safe as texture memory read 
added a 2-5ms load to the current cache.
parent ea1525da
No related branches found
No related tags found
No related merge requests found
......@@ -342,12 +342,13 @@ private:
const SurfaceParams& params, const GPUVAddr gpu_addr,
const bool preserve_contents,
const bool untopological) {
const bool do_load = Settings::values.use_accurate_gpu_emulation && preserve_contents;
for (auto surface : overlaps) {
Unregister(surface);
}
switch (PickStrategy(overlaps, params, gpu_addr, untopological)) {
case RecycleStrategy::Ignore: {
return InitializeSurface(gpu_addr, params, preserve_contents);
return InitializeSurface(gpu_addr, params, do_load);
}
case RecycleStrategy::Flush: {
std::sort(overlaps.begin(), overlaps.end(),
......@@ -361,7 +362,7 @@ private:
}
default: {
UNIMPLEMENTED_MSG("Unimplemented Texture Cache Recycling Strategy!");
return InitializeSurface(gpu_addr, params, preserve_contents);
return InitializeSurface(gpu_addr, params, do_load);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment