Formatting
This commit is contained in:
committed by
Evan Husted
parent
a8b4e643d0
commit
7441d94f10
@@ -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