mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-16 19:22:55 +00:00
99 lines
3.2 KiB
C#
99 lines
3.2 KiB
C#
using Ryujinx.Common.Configuration;
|
|
using Ryujinx.Common.Logging;
|
|
using Ryujinx.Input.HLE;
|
|
using Ryujinx.SDL3.Common;
|
|
using System;
|
|
using SDL;
|
|
using static SDL.SDL3;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Headless
|
|
{
|
|
class VulkanWindow : WindowBase
|
|
{
|
|
public VulkanWindow(
|
|
InputManager inputManager,
|
|
GraphicsDebugLevel glLogLevel,
|
|
AspectRatio aspectRatio,
|
|
bool enableMouse,
|
|
HideCursorMode hideCursorMode,
|
|
bool ignoreControllerApplet)
|
|
: base(inputManager, glLogLevel, aspectRatio, enableMouse, hideCursorMode, ignoreControllerApplet)
|
|
{
|
|
}
|
|
|
|
public override SDL_WindowFlags WindowFlags => SDL_WindowFlags.SDL_WINDOW_VULKAN;
|
|
|
|
protected override void InitializeWindowRenderer() { }
|
|
|
|
protected override void InitializeRenderer()
|
|
{
|
|
if (IsExclusiveFullscreen)
|
|
{
|
|
Renderer?.Window.SetSize(ExclusiveFullscreenWidth, ExclusiveFullscreenHeight);
|
|
MouseDriver.SetClientSize(ExclusiveFullscreenWidth, ExclusiveFullscreenHeight);
|
|
}
|
|
else
|
|
{
|
|
Renderer?.Window.SetSize(DefaultWidth, DefaultHeight);
|
|
MouseDriver.SetClientSize(DefaultWidth, DefaultHeight);
|
|
}
|
|
}
|
|
|
|
public unsafe nint CreateWindowSurface(nint instance)
|
|
{
|
|
VkSurfaceKHR_T surface = new();
|
|
VkSurfaceKHR_T* surfaceHandle = &surface;
|
|
VkSurfaceKHR_T** surfaceHandleHandle = &surfaceHandle;
|
|
|
|
void CreateSurface()
|
|
{
|
|
if (!SDL_Vulkan_CreateSurface(WindowHandle, (VkInstance_T*)instance, null, surfaceHandleHandle))
|
|
{
|
|
string errorMessage = $"SDL_Vulkan_CreateSurface failed with error \"{SDL_GetError()}\"";
|
|
|
|
Logger.Error?.Print(LogClass.Application, errorMessage);
|
|
|
|
throw new Exception(errorMessage);
|
|
}
|
|
}
|
|
|
|
if (SDL3Driver.MainThreadDispatcher != null)
|
|
{
|
|
SDL3Driver.MainThreadDispatcher(CreateSurface);
|
|
}
|
|
else
|
|
{
|
|
CreateSurface();
|
|
}
|
|
|
|
return (nint)surfaceHandle;
|
|
}
|
|
|
|
public unsafe static string[] GetRequiredInstanceExtensions()
|
|
{
|
|
uint extensionCount = 0;
|
|
byte** extensions = SDL_Vulkan_GetInstanceExtensions(&extensionCount);
|
|
if (extensionCount == 0) {
|
|
string errorMessage = $"SDL_Vulkan_GetInstanceExtensions failed with error \"{SDL_GetError()}\"";
|
|
|
|
Logger.Error?.Print(LogClass.Application, errorMessage);
|
|
|
|
throw new Exception(errorMessage);
|
|
}
|
|
string[] extensionArr = new string[extensionCount];
|
|
for (int i = 0; i < extensionCount; i++) {
|
|
extensionArr[i] = Marshal.PtrToStringUTF8((nint)extensions[i]);
|
|
}
|
|
return extensionArr;
|
|
}
|
|
|
|
protected override void FinalizeWindowRenderer()
|
|
{
|
|
Device.DisposeGpu();
|
|
}
|
|
|
|
protected override void SwapBuffers() { }
|
|
}
|
|
}
|