From 7abc7be28727cd9b1bf803d08d3d7c899db56815 Mon Sep 17 00:00:00 2001 From: Lubosz Sarnecki Date: Sun, 17 Mar 2024 22:43:40 +0100 Subject: [PATCH] OpenXrContext: Add Windows platform and bindings. --- plugins/openxr/src/OpenXrContext.cpp | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/plugins/openxr/src/OpenXrContext.cpp b/plugins/openxr/src/OpenXrContext.cpp index 9b50057362..127ab7ae9a 100644 --- a/plugins/openxr/src/OpenXrContext.cpp +++ b/plugins/openxr/src/OpenXrContext.cpp @@ -11,9 +11,15 @@ #include -#include +#if defined(Q_OS_LINUX) + #include + #define XR_USE_PLATFORM_XLIB +#elif defined(Q_OS_WIN) + #define XR_USE_PLATFORM_WIN32 +#else + #error "Unsupported platform" +#endif -#define XR_USE_PLATFORM_XLIB #define XR_USE_GRAPHICS_API_OPENGL #include #include @@ -178,14 +184,22 @@ bool OpenXrContext::requestExitSession() { } bool OpenXrContext::initSession() { - // TODO: Make cross platform +#if defined(Q_OS_LINUX) XrGraphicsBindingOpenGLXlibKHR binding = { .type = XR_TYPE_GRAPHICS_BINDING_OPENGL_XLIB_KHR, .xDisplay = XOpenDisplay(nullptr), .glxDrawable = glXGetCurrentDrawable(), .glxContext = glXGetCurrentContext(), }; - +#elif defined(Q_OS_WIN) + XrGraphicsBindingOpenGLWin32KHR binding = { + .type = XR_TYPE_GRAPHICS_BINDING_OPENGL_WIN32_KHR, + .hDC = wglGetCurrentDC(), + .hGLRC = wglGetCurrentContext(), + }; +#else + #error "Unsupported platform" +#endif XrSessionCreateInfo info = { .type = XR_TYPE_SESSION_CREATE_INFO, .next = &binding,