mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:48:33 +00:00
851d81d24a
* Fix Redundant Qualifer Warnings * Remove unnecessary using
26 lines
588 B
C#
26 lines
588 B
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
readonly struct DisposableBufferView : IDisposable
|
|
{
|
|
private readonly Vk _api;
|
|
private readonly Device _device;
|
|
|
|
public BufferView Value { get; }
|
|
|
|
public DisposableBufferView(Vk api, Device device, BufferView bufferView)
|
|
{
|
|
_api = api;
|
|
_device = device;
|
|
Value = bufferView;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_api.DestroyBufferView(_device, Value, Span<AllocationCallbacks>.Empty);
|
|
}
|
|
}
|
|
}
|