openxr_platform_inc.h 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**************************************************************************/
  2. /* openxr_platform_inc.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef OPENXR_PLATFORM_INC_H
  31. #define OPENXR_PLATFORM_INC_H
  32. // In various places we need to include platform definitions but we can't
  33. // include these in our normal header files as we'll end up with issues.
  34. #ifdef VULKAN_ENABLED
  35. #define XR_USE_GRAPHICS_API_VULKAN
  36. #include "drivers/vulkan/rendering_context_driver_vulkan.h"
  37. #endif // VULKAN_ENABLED
  38. #if defined(GLES3_ENABLED) && !defined(MACOS_ENABLED)
  39. #ifdef ANDROID_ENABLED
  40. #define XR_USE_GRAPHICS_API_OPENGL_ES
  41. #include <EGL/egl.h>
  42. #include <EGL/eglext.h>
  43. #include <GLES3/gl3.h>
  44. #include <GLES3/gl3ext.h>
  45. #else
  46. #define XR_USE_GRAPHICS_API_OPENGL
  47. #endif // ANDROID_ENABLED
  48. #if defined(LINUXBSD_ENABLED) && defined(EGL_ENABLED)
  49. #ifdef GLAD_ENABLED
  50. #include "thirdparty/glad/glad/egl.h"
  51. #else
  52. #include <EGL/egl.h>
  53. #endif // GLAD_ENABLED
  54. #endif // defined(LINUXBSD_ENABLED) && defined(EGL_ENABLED)
  55. #ifdef X11_ENABLED
  56. #define GL_GLEXT_PROTOTYPES 1
  57. #define GL3_PROTOTYPES 1
  58. #include "thirdparty/glad/glad/gl.h"
  59. #include "thirdparty/glad/glad/glx.h"
  60. #endif // X11_ENABLED
  61. #endif // defined(GLES3_ENABLED) && !defined(MACOS_ENABLED)
  62. #ifdef X11_ENABLED
  63. #include <X11/Xlib.h>
  64. #endif // X11_ENABLED
  65. #ifdef WINDOWS_ENABLED
  66. // Including windows.h here is absolutely evil, we shouldn't be doing this outside of platform
  67. // however due to the way the openxr headers are put together, we have no choice.
  68. #include <windows.h>
  69. #endif // WINDOWS_ENABLED
  70. #ifdef ANDROID_ENABLED
  71. // The jobject type from jni.h is used by openxr_platform.h on Android.
  72. #include <jni.h>
  73. #endif // ANDROID_ENABLED
  74. // Include platform dependent structs.
  75. #include <openxr/openxr_platform.h>
  76. #endif // OPENXR_PLATFORM_INC_H