Implement SetBlendState

This commit is contained in:
Isaac Marovitz
2024-05-18 21:20:15 -04:00
committed by Isaac Marovitz
parent 1db8decd12
commit f98d9bae24
3 changed files with 32 additions and 2 deletions

View File

@@ -47,6 +47,8 @@ namespace Ryujinx.Graphics.Metal
public MTLTexture DepthStencil = default;
public MTLTexture[] RenderTargets = new MTLTexture[MaxColorAttachments];
public MTLVertexDescriptor VertexDescriptor = new();
public Dictionary<int, BlendDescriptor> BlendDescriptors = new();
public ColorF BlendColor = new();
public EncoderState() { }
}