mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 02:50:18 +00:00
23 lines
405 B
C#
23 lines
405 B
C#
|
using Ryujinx.Graphics.GAL;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Metal
|
||
|
{
|
||
|
public class Program : IProgram
|
||
|
{
|
||
|
public void Dispose()
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
public ProgramLinkStatus CheckProgramLink(bool blocking)
|
||
|
{
|
||
|
return ProgramLinkStatus.Failure;
|
||
|
}
|
||
|
|
||
|
public byte[] GetBinary()
|
||
|
{
|
||
|
return new byte[] {};
|
||
|
}
|
||
|
}
|
||
|
}
|