some initial metal commits cherry-picked
This commit is contained in:
19
src/Ryujinx.Graphics.Metal/Sampler.cs
Normal file
19
src/Ryujinx.Graphics.Metal/Sampler.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Ryujinx.Graphics.GAL;
|
||||
using SharpMetal.Metal;
|
||||
|
||||
namespace Ryujinx.Graphics.Metal
|
||||
{
|
||||
public class Sampler : ISampler
|
||||
{
|
||||
private MTLSamplerState _mtlSamplerState;
|
||||
|
||||
public Sampler(MTLSamplerState mtlSamplerState)
|
||||
{
|
||||
_mtlSamplerState = mtlSamplerState;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user