Texture Copys

This commit is contained in:
Isaac Marovitz 2023-07-27 22:54:24 -04:00 committed by Isaac Marovitz
parent 1e36815713
commit 70f54f23c9
4 changed files with 73 additions and 20 deletions

View file

@ -31,9 +31,7 @@ namespace Ryujinx.Graphics.Metal
_device = MTLDevice.CreateSystemDefaultDevice();
Queue = _device.NewCommandQueue();
var commandBuffer = Queue.CommandBuffer();
_pipeline = new Pipeline(_device, commandBuffer);
_pipeline = new Pipeline(_device, Queue);
}
public void BackgroundContextAction(Action action, bool alwaysBackground = false)