Formatting

This commit is contained in:
Isaac Marovitz
2023-08-03 14:50:49 -04:00
committed by Evan Husted
parent a8b4e643d0
commit 7441d94f10
15 changed files with 1386 additions and 81 deletions

View File

@@ -2,13 +2,8 @@ using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.Metal
{
public class Program : IProgram
class Program : IProgram
{
public void Dispose()
{
return;
}
public ProgramLinkStatus CheckProgramLink(bool blocking)
{
return ProgramLinkStatus.Failure;
@@ -16,7 +11,12 @@ namespace Ryujinx.Graphics.Metal
public byte[] GetBinary()
{
return new byte[] {};
return ""u8.ToArray();
}
public void Dispose()
{
return;
}
}
}