Move solution and projects to src
This commit is contained in:
25
src/Ryujinx.Graphics.Vulkan/DisposableSampler.cs
Normal file
25
src/Ryujinx.Graphics.Vulkan/DisposableSampler.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Silk.NET.Vulkan;
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Graphics.Vulkan
|
||||
{
|
||||
readonly 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 void Dispose()
|
||||
{
|
||||
_api.DestroySampler(_device, Value, Span<AllocationCallbacks>.Empty);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user