RDNA3 Vulkan project

This commit is contained in:
Evan Husted
2025-01-05 23:04:17 -06:00
parent a23d1d660e
commit 7ffc1f0d2f
119 changed files with 38581 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using Silk.NET.Vulkan;
using System;
namespace Ryujinx.Graphics.Rdna3Vulkan
{
readonly struct DisposableMemory : IDisposable
{
private readonly Vk _api;
private readonly Device _device;
private readonly DeviceMemory _memory;
public DisposableMemory(Vk api, Device device, DeviceMemory memory)
{
_api = api;
_device = device;
_memory = memory;
}
public void Dispose()
{
_api.FreeMemory(_device, _memory, Span<AllocationCallbacks>.Empty);
}
}
}