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