Ryujinx/src/Ryujinx.Graphics.Metal/Sampler.cs

20 lines
372 B
C#
Raw Normal View History

using Ryujinx.Graphics.GAL;
using SharpMetal.Metal;
namespace Ryujinx.Graphics.Metal
{
2023-08-03 18:50:49 +00:00
class Sampler : ISampler
{
2023-08-03 18:50:49 +00:00
// private readonly MTLSamplerState _mtlSamplerState;
public Sampler(MTLSamplerState mtlSamplerState)
{
2023-08-03 18:50:49 +00:00
// _mtlSamplerState = mtlSamplerState;
}
public void Dispose()
{
}
}
}