Fix sample-less reads with lod
This commit is contained in:
parent
a07975afec
commit
4ee4e09358
@ -293,7 +293,14 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
||||
|
||||
if (hasLodLevel)
|
||||
{
|
||||
Append($"level({Src(coordType)})");
|
||||
if (intCoords)
|
||||
{
|
||||
Append(Src(coordType));
|
||||
}
|
||||
else
|
||||
{
|
||||
Append($"level({Src(coordType)})");
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: Support offsets
|
||||
|
Loading…
x
Reference in New Issue
Block a user