mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
Fix texture bindings using wrong sampler pool in some cases (#3583)
This commit is contained in:
parent
e8f1ca8427
commit
e87e8b012c
|
@ -553,7 +553,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
|
||||
specStateMatches &= specState.MatchesTexture(stage, index, descriptor);
|
||||
|
||||
Sampler sampler = _samplerPool?.Get(samplerId);
|
||||
Sampler sampler = samplerPool?.Get(samplerId);
|
||||
|
||||
ITexture hostTexture = texture?.GetTargetTexture(bindingInfo.Target);
|
||||
ISampler hostSampler = sampler?.GetHostSampler(texture);
|
||||
|
|
Loading…
Reference in a new issue