This commit is contained in:
Isaac Marovitz 2023-07-29 01:20:15 -04:00 committed by Isaac Marovitz
parent 7202bd070a
commit 956425943f
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ namespace Ryujinx.Graphics.Metal
_device = device;
_mtlCommandQueue = commandQueue;
// TODO: Recreate descriptor and encoder state as needed
var renderPipelineDescriptor = new MTLRenderPipelineDescriptor();
var error = new NSError(IntPtr.Zero);
_renderEncoderState = new(_device.NewRenderPipelineState(renderPipelineDescriptor, ref error), _device);
@ -38,6 +39,7 @@ namespace Ryujinx.Graphics.Metal
{
Logger.Error?.PrintMsg(LogClass.Gpu, $"Failed to create Render Pipeline State: {StringHelper.String(error.LocalizedDescription)}");
}
//
_commandBuffer = _mtlCommandQueue.CommandBuffer();
}