openxr_opengl_extension.h 4.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /**************************************************************************/
  2. /* openxr_opengl_extension.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_OPENGL_EXTENSION_H
  31. #define OPENXR_OPENGL_EXTENSION_H
  32. #ifdef GLES3_ENABLED
  33. #include "../../openxr_api.h"
  34. #include "../../util.h"
  35. #include "../openxr_extension_wrapper.h"
  36. #include "core/templates/vector.h"
  37. // Always include this as late as possible.
  38. #include "../../openxr_platform_inc.h"
  39. class OpenXROpenGLExtension : public OpenXRGraphicsExtensionWrapper {
  40. public:
  41. virtual HashMap<String, bool *> get_requested_extensions() override;
  42. virtual void on_instance_created(const XrInstance p_instance) override;
  43. virtual void *set_session_create_and_get_next_pointer(void *p_next_pointer) override;
  44. virtual void on_pre_draw_viewport(RID p_render_target) override;
  45. virtual void on_post_draw_viewport(RID p_render_target) override;
  46. virtual void get_usable_swapchain_formats(Vector<int64_t> &p_usable_swap_chains) override;
  47. virtual void get_usable_depth_formats(Vector<int64_t> &p_usable_swap_chains) override;
  48. virtual String get_swapchain_format_name(int64_t p_swapchain_format) const override;
  49. virtual bool get_swapchain_image_data(XrSwapchain p_swapchain, int64_t p_swapchain_format, uint32_t p_width, uint32_t p_height, uint32_t p_sample_count, uint32_t p_array_size, void **r_swapchain_graphics_data) override;
  50. virtual void cleanup_swapchain_graphics_data(void **p_swapchain_graphics_data) override;
  51. virtual bool create_projection_fov(const XrFovf p_fov, double p_z_near, double p_z_far, Projection &r_camera_matrix) override;
  52. virtual RID get_texture(void *p_swapchain_graphics_data, int p_image_index) override;
  53. private:
  54. static OpenXROpenGLExtension *singleton;
  55. #ifdef WIN32
  56. static XrGraphicsBindingOpenGLWin32KHR graphics_binding_gl;
  57. #elif defined(ANDROID_ENABLED)
  58. static XrGraphicsBindingOpenGLESAndroidKHR graphics_binding_gl;
  59. #else // Linux/X11
  60. static XrGraphicsBindingOpenGLXlibKHR graphics_binding_gl;
  61. #endif
  62. struct SwapchainGraphicsData {
  63. bool is_multiview;
  64. Vector<RID> texture_rids;
  65. };
  66. bool srgb_ext_is_available = true;
  67. bool hw_linear_to_srgb_is_enabled = false;
  68. bool check_graphics_api_support(XrVersion p_desired_version);
  69. #ifdef ANDROID_ENABLED
  70. EXT_PROTO_XRRESULT_FUNC3(xrGetOpenGLESGraphicsRequirementsKHR, (XrInstance), p_instance, (XrSystemId), p_system_id, (XrGraphicsRequirementsOpenGLESKHR *), p_graphics_requirements)
  71. #else
  72. EXT_PROTO_XRRESULT_FUNC3(xrGetOpenGLGraphicsRequirementsKHR, (XrInstance), p_instance, (XrSystemId), p_system_id, (XrGraphicsRequirementsOpenGLKHR *), p_graphics_requirements)
  73. #endif
  74. EXT_PROTO_XRRESULT_FUNC4(xrEnumerateSwapchainImages, (XrSwapchain), p_swapchain, (uint32_t), p_image_capacity_input, (uint32_t *), p_image_count_output, (XrSwapchainImageBaseHeader *), p_images)
  75. };
  76. #endif // GLES3_ENABLED
  77. #endif // OPENXR_OPENGL_EXTENSION_H