mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-23 09:30:18 +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
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
using System;
|
|
using Avalonia;
|
|
using Ryujinx.Ava.Ui.Vulkan.Surfaces;
|
|
using Silk.NET.Vulkan;
|
|
|
|
namespace Ryujinx.Ava.Ui.Vulkan
|
|
{
|
|
internal class VulkanSurfaceRenderingSession : IDisposable
|
|
{
|
|
private readonly VulkanDevice _device;
|
|
private readonly VulkanSurfaceRenderTarget _renderTarget;
|
|
private VulkanCommandBufferPool.VulkanCommandBuffer _commandBuffer;
|
|
|
|
public VulkanSurfaceRenderingSession(VulkanDisplay display, VulkanDevice device,
|
|
VulkanSurfaceRenderTarget renderTarget, float scaling)
|
|
{
|
|
Display = display;
|
|
_device = device;
|
|
_renderTarget = renderTarget;
|
|
Scaling = scaling;
|
|
Begin();
|
|
}
|
|
|
|
public VulkanDisplay Display { get; }
|
|
|
|
public PixelSize Size => _renderTarget.Size;
|
|
public Vk Api => _device.Api;
|
|
|
|
public float Scaling { get; }
|
|
|
|
public bool IsYFlipped { get; } = true;
|
|
|
|
public void Dispose()
|
|
{
|
|
_commandBuffer = Display.StartPresentation(_renderTarget);
|
|
|
|
Display.BlitImageToCurrentImage(_renderTarget, _commandBuffer.InternalHandle);
|
|
|
|
Display.EndPresentation(_commandBuffer);
|
|
}
|
|
|
|
private void Begin()
|
|
{
|
|
if (!Display.EnsureSwapchainAvailable())
|
|
_renderTarget.Invalidate();
|
|
}
|
|
}
|
|
}
|