Fix separate bindless sampler at offset 0 (#2360)
This commit is contained in:
parent
afd3153ca4
commit
65fee49e8a
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
|
|||
SetHandle(
|
||||
config,
|
||||
texOp,
|
||||
src0.GetCbufOffset() | (src1.GetCbufOffset() << 16),
|
||||
src0.GetCbufOffset() | ((src1.GetCbufOffset() + 1) << 16),
|
||||
src0.GetCbufSlot() | ((src1.GetCbufSlot() + 1) << 16));
|
||||
}
|
||||
else if (texOp.Inst == Instruction.ImageLoad || texOp.Inst == Instruction.ImageStore)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue