[GPU] Converted Depth/Color Surfaces to a ring buffer

Additionally made the surface cache search hit for any address that lies in the surface.

This should allow multiple races to be done in Mario Kart and fixes the intro video.
This commit is contained in:
Sky 2023-07-06 11:18:14 -07:00
parent 255947b2fc
commit 17b08a25fa
3 changed files with 10 additions and 6 deletions

View file

@ -46,7 +46,7 @@ public:
OptionalRef findFromAddress(u32 address) {
for (auto& e : buffer) {
if (e.location == address && e.valid)
if (e.location <= address && e.location+e.sizeInBytes() > address && e.valid)
return e;
}