WIP V2: Experimental: Metal backend #441

Merged
GreemDev merged 369 commits from new-metal into master 2024-12-24 06:55:16 +00:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 765ca8e6c0 - Show all commits

View File

@ -28,8 +28,6 @@ namespace Ryujinx.Graphics.Metal
{ {
Logger.Warning?.Print(LogClass.Gpu, $"Shader linking failed: \n{StringHelper.String(libraryError.LocalizedDescription)}"); Logger.Warning?.Print(LogClass.Gpu, $"Shader linking failed: \n{StringHelper.String(libraryError.LocalizedDescription)}");
_status = ProgramLinkStatus.Failure; _status = ProgramLinkStatus.Failure;
Console.WriteLine(shader.Code);
throw new NotImplementedException();
return; return;
} }

View File

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