don't use mask on size query

This commit is contained in:
Samuliak 2024-05-20 19:12:17 +02:00 committed by Isaac Marovitz
parent 89c29152d0
commit 0d7fb3aaef
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
2 changed files with 1 additions and 3 deletions

View File

@ -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;
}

View File

@ -316,7 +316,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
texCall += $"{lodExpr}";
}
texCall += $"){GetMask(texOp.Index)}";
texCall += $")";
}
return texCall;