mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-21 00:23:36 +00:00
25 lines
552 B
C#
25 lines
552 B
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
struct DisposableImageView : IDisposable
|
|
{
|
|
private readonly Vk _api;
|
|
private readonly Device _device;
|
|
|
|
public ImageView Value { get; }
|
|
|
|
public DisposableImageView(Vk api, Device device, ImageView imageView)
|
|
{
|
|
_api = api;
|
|
_device = device;
|
|
Value = imageView;
|
|
}
|
|
|
|
public unsafe void Dispose()
|
|
{
|
|
_api.DestroyImageView(_device, Value, null);
|
|
}
|
|
}
|
|
}
|