Formatting

This commit is contained in:
Isaac Marovitz
2023-08-03 14:50:49 -04:00
committed by Evan Husted
parent a8b4e643d0
commit 7441d94f10
15 changed files with 1386 additions and 81 deletions

View File

@@ -3,13 +3,13 @@ using SharpMetal.Metal;
namespace Ryujinx.Graphics.Metal
{
public class Sampler : ISampler
class Sampler : ISampler
{
private MTLSamplerState _mtlSamplerState;
// private readonly MTLSamplerState _mtlSamplerState;
public Sampler(MTLSamplerState mtlSamplerState)
{
_mtlSamplerState = mtlSamplerState;
// _mtlSamplerState = mtlSamplerState;
}
public void Dispose()