mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 07:22:26 -07:00
TODO
This commit is contained in:
committed by
Isaac Marovitz
parent
96bbc86331
commit
e3da359acf
@@ -31,6 +31,7 @@ namespace Ryujinx.Graphics.Metal
|
|||||||
_device = device;
|
_device = device;
|
||||||
_mtlCommandQueue = commandQueue;
|
_mtlCommandQueue = commandQueue;
|
||||||
|
|
||||||
|
// TODO: Recreate descriptor and encoder state as needed
|
||||||
var renderPipelineDescriptor = new MTLRenderPipelineDescriptor();
|
var renderPipelineDescriptor = new MTLRenderPipelineDescriptor();
|
||||||
var error = new NSError(IntPtr.Zero);
|
var error = new NSError(IntPtr.Zero);
|
||||||
_renderEncoderState = new(_device.NewRenderPipelineState(renderPipelineDescriptor, ref error), _device);
|
_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)}");
|
Logger.Error?.PrintMsg(LogClass.Gpu, $"Failed to create Render Pipeline State: {StringHelper.String(error.LocalizedDescription)}");
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
|
||||||
_commandBuffer = _mtlCommandQueue.CommandBuffer();
|
_commandBuffer = _mtlCommandQueue.CommandBuffer();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user