mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-22 22:05:45 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
26 lines
596 B
C#
26 lines
596 B
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
using Buffer = Silk.NET.Vulkan.Buffer;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
readonly struct DisposableBuffer : IDisposable
|
|
{
|
|
private readonly Vk _api;
|
|
private readonly Device _device;
|
|
|
|
public Buffer Value { get; }
|
|
|
|
public DisposableBuffer(Vk api, Device device, Buffer buffer)
|
|
{
|
|
_api = api;
|
|
_device = device;
|
|
Value = buffer;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_api.DestroyBuffer(_device, Value, Span<AllocationCallbacks>.Empty);
|
|
}
|
|
}
|
|
}
|