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