mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 04:10:18 +00: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()
|
|
{
|
|
}
|
|
}
|
|
}
|