mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-23 17:40:19 +00:00
* add avalonia support * only lock around skia flush * addressed review * cleanup * add fallback size if avalonia attempts to render but the window size is 0. read desktop scale after enabling dpi check * fix getting window handle on linux. skip render is size is 0
18 lines
418 B
C#
18 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; }
|
|
}
|
|
}
|