mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 20:22:30 +01:00
rsx: Fully process texture if surface cache configuration changed
This commit is contained in:
parent
8d3d290e33
commit
762b594927
@ -309,7 +309,8 @@ namespace rsx
|
||||
if (!ref_image || surface->get_surface(rsx::surface_access::gpu_reference) == ref_image)
|
||||
{
|
||||
// Same image, so configuration did not change.
|
||||
if (surface->last_use_tag <= surface_cache_tag)
|
||||
if (surface_cache.cache_tag <= surface_cache_tag &&
|
||||
surface->last_use_tag <= surface_cache_tag)
|
||||
{
|
||||
external_subresource_desc.do_not_cache = false;
|
||||
return {};
|
||||
|
Loading…
Reference in New Issue
Block a user