mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-21 00:23:36 +00:00
25 lines
538 B
C#
25 lines
538 B
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
struct DisposableSampler : IDisposable
|
|
{
|
|
private readonly Vk _api;
|
|
private readonly Device _device;
|
|
|
|
public Sampler Value { get; }
|
|
|
|
public DisposableSampler(Vk api, Device device, Sampler sampler)
|
|
{
|
|
_api = api;
|
|
_device = device;
|
|
Value = sampler;
|
|
}
|
|
|
|
public unsafe void Dispose()
|
|
{
|
|
_api.DestroySampler(_device, Value, null);
|
|
}
|
|
}
|
|
}
|