WIP V2: Experimental: Metal backend #441

Merged
GreemDev merged 369 commits from new-metal into master 2024-12-24 06:55:16 +00:00
Showing only changes of commit 4cde7a4125 - Show all commits

View File

@ -13,6 +13,8 @@ namespace Ryujinx.Graphics.Metal
[SupportedOSPlatform("macos")] [SupportedOSPlatform("macos")]
class Pipeline : IPipeline, IDisposable class Pipeline : IPipeline, IDisposable
{ {
private const int MaxFramesPerCapture = 50;
private readonly MTLDevice _device; private readonly MTLDevice _device;
private readonly MTLCommandQueue _mtlCommandQueue; private readonly MTLCommandQueue _mtlCommandQueue;
private readonly HelperShaders _helperShaders; private readonly HelperShaders _helperShaders;
@ -150,7 +152,7 @@ namespace Ryujinx.Graphics.Metal
{ {
_frameCount++; _frameCount++;
if (_frameCount >= 5) if (_frameCount >= MaxFramesPerCapture)
{ {
_captureEnded = true; _captureEnded = true;
MTLCaptureManager.SharedCaptureManager().StopCapture(); MTLCaptureManager.SharedCaptureManager().StopCapture();