openxr_fb_update_swapchain_extension.h 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /**************************************************************************/
  2. /* openxr_fb_update_swapchain_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. #pragma once
  31. // This extension implements the FB update swapchain extension.
  32. // This is an extension Meta added to further configure the swapchain.
  33. // Other Android based devices are implementing this as well, see:
  34. // https://github.khronos.org/OpenXR-Inventory/extension_support.html#XR_FB_swapchain_update_state
  35. #include "../openxr_api.h"
  36. #include "../util.h"
  37. #include "openxr_composition_layer_extension.h"
  38. #include "openxr_extension_wrapper.h"
  39. class OpenXRFBUpdateSwapchainExtension : public OpenXRExtensionWrapper {
  40. GDCLASS(OpenXRFBUpdateSwapchainExtension, OpenXRExtensionWrapper);
  41. protected:
  42. static void _bind_methods() {}
  43. friend class OpenXRFBFoveationExtension;
  44. public:
  45. static OpenXRFBUpdateSwapchainExtension *get_singleton();
  46. OpenXRFBUpdateSwapchainExtension(const String &p_rendering_driver);
  47. virtual ~OpenXRFBUpdateSwapchainExtension() override;
  48. virtual HashMap<String, bool *> get_requested_extensions(XrVersion p_version) override;
  49. virtual void on_instance_created(const XrInstance p_instance) override;
  50. virtual void on_instance_destroyed() override;
  51. bool is_enabled() const;
  52. bool is_android_ext_enabled() const;
  53. void update_swapchain_state(XrSwapchain p_swapchain, const OpenXRCompositionLayerExtension::SwapchainState *p_swapchain_state);
  54. void update_swapchain_surface_size(XrSwapchain p_swapchain, const Size2i &p_size);
  55. private:
  56. static OpenXRFBUpdateSwapchainExtension *singleton;
  57. // Setup
  58. String rendering_driver;
  59. bool fb_swapchain_update_state_ext = false;
  60. bool fb_swapchain_update_state_vulkan_ext = false;
  61. bool fb_swapchain_update_state_opengles_ext = false;
  62. bool fb_swapchain_update_state_android_ext = false;
  63. uint32_t filter_to_gl(OpenXRCompositionLayerExtension::Filter p_filter, OpenXRCompositionLayerExtension::MipmapMode p_mipmap_mode = OpenXRCompositionLayerExtension::MipmapMode::MIPMAP_MODE_DISABLED);
  64. uint32_t wrap_to_gl(OpenXRCompositionLayerExtension::Wrap p_wrap);
  65. uint32_t swizzle_to_gl(OpenXRCompositionLayerExtension::Swizzle p_swizzle);
  66. uint32_t filter_to_vk(OpenXRCompositionLayerExtension::Filter p_filter);
  67. uint32_t mipmap_mode_to_vk(OpenXRCompositionLayerExtension::MipmapMode p_mipmap);
  68. uint32_t wrap_to_vk(OpenXRCompositionLayerExtension::Wrap p_wrap);
  69. uint32_t swizzle_to_vk(OpenXRCompositionLayerExtension::Swizzle p_swizzle);
  70. // OpenXR API call wrappers
  71. EXT_PROTO_XRRESULT_FUNC2(xrUpdateSwapchainFB, (XrSwapchain), swapchain, (const XrSwapchainStateBaseHeaderFB *), state);
  72. EXT_PROTO_XRRESULT_FUNC2(xrGetSwapchainStateFB, (XrSwapchain), swapchain, (XrSwapchainStateBaseHeaderFB *), state);
  73. };