mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
OpenXrContext: Add Windows platform and bindings.
This commit is contained in:
parent
a400490815
commit
2a26a71f2c
1 changed files with 18 additions and 4 deletions
|
@ -11,9 +11,15 @@
|
|||
|
||||
#include <sstream>
|
||||
|
||||
#include <GL/glx.h>
|
||||
#if defined(Q_OS_LINUX)
|
||||
#include <GL/glx.h>
|
||||
#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 <openxr/openxr.h>
|
||||
#include <openxr/openxr_platform.h>
|
||||
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue