Formatting

This commit is contained in:
Isaac Marovitz 2023-10-11 00:39:18 -04:00
parent 2d156a3c08
commit dbdd9b9d80
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ namespace Ryujinx.Graphics.Metal
private MTLCommandEncoder _currentEncoder;
private RenderEncoderState _renderEncoderState;
private MTLVertexDescriptor _vertexDescriptor = new();
private readonly MTLVertexDescriptor _vertexDescriptor = new();
private MTLBuffer[] _vertexBuffers;
private MTLBuffer _indexBuffer;

View File

@ -11,7 +11,7 @@ namespace Ryujinx.Graphics.Metal
[SupportedOSPlatform("macos")]
class Program : IProgram
{
private ProgramLinkStatus _status = ProgramLinkStatus.Incomplete;
private ProgramLinkStatus _status;
public MTLFunction VertexFunction;
public MTLFunction FragmentFunction;
public MTLFunction ComputeFunction;