2021-01-20 03:33:27 +00:00
|
|
|
using System;
|
|
|
|
using RefreshCS;
|
|
|
|
|
|
|
|
namespace MoonWorks.Graphics
|
|
|
|
{
|
2021-02-24 20:43:35 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A sampler specifies how a texture will be sampled in a shader.
|
|
|
|
/// </summary>
|
2021-01-20 03:33:27 +00:00
|
|
|
public class Sampler : GraphicsResource
|
|
|
|
{
|
2022-02-19 05:02:16 +00:00
|
|
|
protected override Action<IntPtr, IntPtr, IntPtr> QueueDestroyFunction => Refresh.Refresh_QueueDestroySampler;
|
2021-01-20 03:33:27 +00:00
|
|
|
|
|
|
|
public Sampler(
|
|
|
|
GraphicsDevice device,
|
2021-01-28 21:50:20 +00:00
|
|
|
in SamplerCreateInfo samplerCreateInfo
|
2021-01-20 03:33:27 +00:00
|
|
|
) : base(device)
|
|
|
|
{
|
|
|
|
Handle = Refresh.Refresh_CreateSampler(
|
|
|
|
device.Handle,
|
2021-01-28 21:50:20 +00:00
|
|
|
samplerCreateInfo.ToRefreshSamplerStateCreateInfo()
|
2021-01-20 03:33:27 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|