mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-30 10:11:33 -08:00
Fix sample-less reads with lod
This commit is contained in:
parent
970914e2b4
commit
362672ae12
@ -292,9 +292,16 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (hasLodLevel)
|
if (hasLodLevel)
|
||||||
|
{
|
||||||
|
if (intCoords)
|
||||||
|
{
|
||||||
|
Append(Src(coordType));
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
Append($"level({Src(coordType)})");
|
Append($"level({Src(coordType)})");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Support offsets
|
// TODO: Support offsets
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user