openxr_platform_inc.h 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #ifdef X11_ENABLED
  49. #define GL_GLEXT_PROTOTYPES 1
  50. #define GL3_PROTOTYPES 1
  51. #include "thirdparty/glad/glad/gl.h"
  52. #include "thirdparty/glad/glad/glx.h"
  53. #endif // X11_ENABLED
  54. #endif // defined(GLES3_ENABLED) && !defined(MACOS_ENABLED)
  55. #ifdef X11_ENABLED
  56. #include <X11/Xlib.h>
  57. #endif // X11_ENABLED
  58. #ifdef WINDOWS_ENABLED
  59. // Including windows.h here is absolutely evil, we shouldn't be doing this outside of platform
  60. // however due to the way the openxr headers are put together, we have no choice.
  61. #include <windows.h>
  62. #endif // WINDOWS_ENABLED
  63. #ifdef ANDROID_ENABLED
  64. // The jobject type from jni.h is used by openxr_platform.h on Android.
  65. #include <jni.h>
  66. #endif // ANDROID_ENABLED
  67. // Include platform dependent structs.
  68. #include <openxr/openxr_platform.h>
  69. #endif // OPENXR_PLATFORM_INC_H