mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 19:46:42 +00:00
19 lines
418 B
C#
19 lines
418 B
C#
|
using System;
|
||
|
using Silk.NET.Vulkan;
|
||
|
|
||
|
namespace Ryujinx.Ava.Ui.Vulkan
|
||
|
{
|
||
|
internal class VulkanQueue
|
||
|
{
|
||
|
public VulkanQueue(VulkanDevice device, Queue apiHandle)
|
||
|
{
|
||
|
Device = device;
|
||
|
InternalHandle = apiHandle;
|
||
|
}
|
||
|
|
||
|
public VulkanDevice Device { get; }
|
||
|
public IntPtr Handle => InternalHandle.Handle;
|
||
|
internal Queue InternalHandle { get; }
|
||
|
}
|
||
|
}
|