Undertale boots

This commit is contained in:
Isaac Marovitz 2023-08-02 21:53:49 -04:00
parent 1da7e7bc70
commit fd37d100f8
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
2 changed files with 24 additions and 2 deletions

View File

@ -86,8 +86,8 @@ namespace Ryujinx.Graphics.Metal
public IProgram CreateProgram(ShaderSource[] shaders, ShaderInfo info)
{
var library = _device.NewDefaultLibrary();
throw new NotImplementedException();
Logger.Warning?.Print(LogClass.Gpu, "Not Implemented!");
return new Program();
}
public ISampler CreateSampler(SamplerCreateInfo info)

View File

@ -0,0 +1,22 @@
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[] {};
}
}
}