mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-12-28 19:43:04 +00:00
25 lines
553 B
C#
25 lines
553 B
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
readonly struct DisposableImage : IDisposable
|
|
{
|
|
private readonly Vk _api;
|
|
private readonly Device _device;
|
|
|
|
public Image Value { get; }
|
|
|
|
public DisposableImage(Vk api, Device device, Image image)
|
|
{
|
|
_api = api;
|
|
_device = device;
|
|
Value = image;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_api.DestroyImage(_device, Value, Span<AllocationCallbacks>.Empty);
|
|
}
|
|
}
|
|
}
|