mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 18:22:25 -07:00
Formatting
This commit is contained in:
committed by
Isaac Marovitz
parent
4ec37d1798
commit
1cb2ec7ebc
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user