mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-25 22:46:01 +00:00
19 lines
372 B
C#
19 lines
372 B
C#
using Ryujinx.Graphics.GAL;
|
|
using SharpMetal.Metal;
|
|
|
|
namespace Ryujinx.Graphics.Metal
|
|
{
|
|
class Sampler : ISampler
|
|
{
|
|
// private readonly MTLSamplerState _mtlSamplerState;
|
|
|
|
public Sampler(MTLSamplerState mtlSamplerState)
|
|
{
|
|
// _mtlSamplerState = mtlSamplerState;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|