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,