mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-19 22:20:53 -05:00
Shitty Clears + Inline Buffer Improvements?
This commit is contained in:
committed by
Evan Husted
parent
381f4ec091
commit
90e3899c23
@@ -25,7 +25,7 @@ namespace Ryujinx.Graphics.Metal
|
||||
}
|
||||
|
||||
[SupportedOSPlatform("macos")]
|
||||
public struct EncoderState
|
||||
struct EncoderState
|
||||
{
|
||||
public MTLFunction? VertexFunction = null;
|
||||
public MTLFunction? FragmentFunction = null;
|
||||
@@ -62,7 +62,7 @@ namespace Ryujinx.Graphics.Metal
|
||||
|
||||
// Changes to attachments take recreation!
|
||||
public MTLTexture DepthStencil = default;
|
||||
public MTLTexture[] RenderTargets = new MTLTexture[Constants.MaxColorAttachments];
|
||||
public Texture[] RenderTargets = new Texture[Constants.MaxColorAttachments];
|
||||
public Dictionary<int, BlendDescriptor> BlendDescriptors = new();
|
||||
public ColorF BlendColor = new();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user