summaryrefslogtreecommitdiff
path: root/modules/openxr
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2022-11-09 08:07:27 -0600
committerDavid Snopek <dsnopek@gmail.com>2022-11-09 08:09:07 -0600
commitc767cc16eab10be8fd60b42d5cf020d1054cb2ea (patch)
tree504da72a9ba397205e0ee8a6c54001391bf7c06b /modules/openxr
parente25d9281d4f6f0b5b4d972b25cddaa1009ad1d26 (diff)
[openxr] Remove unnecessary fallbacks for native handles on X11
Diffstat (limited to 'modules/openxr')
-rw-r--r--modules/openxr/extensions/openxr_opengl_extension.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/openxr/extensions/openxr_opengl_extension.cpp b/modules/openxr/extensions/openxr_opengl_extension.cpp
index a25727f885..ee69144123 100644
--- a/modules/openxr/extensions/openxr_opengl_extension.cpp
+++ b/modules/openxr/extensions/openxr_opengl_extension.cpp
@@ -151,19 +151,6 @@ void *OpenXROpenGLExtension::set_session_create_and_get_next_pointer(void *p_nex
graphics_binding_gl.glxContext = (GLXContext)glxcontext_handle;
graphics_binding_gl.glxDrawable = (GLXDrawable)glxdrawable_handle;
- if (graphics_binding_gl.xDisplay == nullptr) {
- print_line("OpenXR Failed to get xDisplay from Godot, using XOpenDisplay(nullptr)");
- graphics_binding_gl.xDisplay = XOpenDisplay(nullptr);
- }
- if (graphics_binding_gl.glxContext == nullptr) {
- print_line("OpenXR Failed to get glxContext from Godot, using glXGetCurrentContext()");
- graphics_binding_gl.glxContext = glXGetCurrentContext();
- }
- if (graphics_binding_gl.glxDrawable == 0) {
- print_line("OpenXR Failed to get glxDrawable from Godot, using glXGetCurrentDrawable()");
- graphics_binding_gl.glxDrawable = glXGetCurrentDrawable();
- }
-
// spec says to use proper values but runtimes don't care
graphics_binding_gl.visualid = 0;
graphics_binding_gl.glxFBConfig = 0;