WIP: Experimental: Metal backend #439

Closed
GreemDev wants to merge 374 commits from metal into master
Showing only changes of commit 72209ba2a6 - Show all commits

View File

@ -126,6 +126,7 @@ namespace Ryujinx.Graphics.Metal
{ {
var attachment = descriptor.ColorAttachments.Object((ulong)i); var attachment = descriptor.ColorAttachments.Object((ulong)i);
attachment.Texture = _renderTargets[i]; attachment.Texture = _renderTargets[i];
attachment.LoadAction = MTLLoadAction.Load;
} }
} }