mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-30 10:17:10 +02:00
Fix wrong maximum id on sampler pool in some cases
This commit is contained in:
parent
d5e8fc5c08
commit
12f573e342
6 changed files with 14 additions and 10 deletions
|
@ -76,7 +76,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
|
||||
if (_samplerPool != null)
|
||||
{
|
||||
if (_samplerPool.Address == address)
|
||||
if (_samplerPool.Address == address && _samplerPool.MaximumId >= maximumId)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue