Formatting
This commit is contained in:
parent
4ec37d1798
commit
1cb2ec7ebc
15 changed files with 156 additions and 83 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue