mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-19 19:58:42 +01:00
don't use mask on size query
This commit is contained in:
parent
979da4c1ab
commit
f5cffa0b46
@ -28,8 +28,6 @@ namespace Ryujinx.Graphics.Metal
|
||||
{
|
||||
Logger.Warning?.Print(LogClass.Gpu, $"Shader linking failed: \n{StringHelper.String(libraryError.LocalizedDescription)}");
|
||||
_status = ProgramLinkStatus.Failure;
|
||||
Console.WriteLine(shader.Code);
|
||||
throw new NotImplementedException();
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -316,7 +316,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
|
||||
texCall += $"{lodExpr}";
|
||||
}
|
||||
|
||||
texCall += $"){GetMask(texOp.Index)}";
|
||||
texCall += $")";
|
||||
}
|
||||
|
||||
return texCall;
|
||||
|
Loading…
x
Reference in New Issue
Block a user