Fix wrong maximum id on sampler pool in some cases
This commit is contained in:
@ -76,7 +76,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||
|
||||
if (_samplerPool != null)
|
||||
{
|
||||
if (_samplerPool.Address == address)
|
||||
if (_samplerPool.Address == address && _samplerPool.MaximumId >= maximumId)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user