mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-12-03 15:02:13 +01:00
19 lines
364 B
C#
19 lines
364 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|