mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-23 11:01:20 -08:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
27 lines
596 B
C#
27 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);
|
|
}
|
|
}
|
|
}
|