mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-12-04 23:42:10 +01:00
20 lines
364 B
C#
20 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()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|