mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 18:15:11 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
25 lines
550 B
C#
25 lines
550 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);
|
|
}
|
|
}
|
|
}
|