diff options
author | Clay John <claynjohn@gmail.com> | 2022-11-08 22:57:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-08 22:57:23 -0800 |
commit | 6bb2ea281eb657ec425670ed09e8192f2338fa0e (patch) | |
tree | d47525574fbccaaa60e50e84f29603945eef607d /platform/linuxbsd/x11/display_server_x11.cpp | |
parent | 6d9546f16c505186196da677154de5f216b7eb9b (diff) | |
parent | 23603e409c04fd0238a45552ad7b07a175b528c6 (diff) |
Merge pull request #67775 from dsnopek/opengl-multiview-openxr
Add support for OpenGL to OpenXR
Diffstat (limited to 'platform/linuxbsd/x11/display_server_x11.cpp')
-rw-r--r-- | platform/linuxbsd/x11/display_server_x11.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/linuxbsd/x11/display_server_x11.cpp b/platform/linuxbsd/x11/display_server_x11.cpp index f477787771..c3a86c69e1 100644 --- a/platform/linuxbsd/x11/display_server_x11.cpp +++ b/platform/linuxbsd/x11/display_server_x11.cpp @@ -1309,6 +1309,11 @@ int64_t DisplayServerX11::window_get_native_handle(HandleType p_handle_type, Win case WINDOW_VIEW: { return 0; // Not supported. } +#ifdef GLES3_ENABLED + case OPENGL_CONTEXT: { + return (int64_t)gl_manager->get_glx_context(p_window); + } +#endif default: { return 0; } |