openxr_vulkan_extension.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**************************************************************************/
  2. /* openxr_vulkan_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_VULKAN_EXTENSION_H
  31. #define OPENXR_VULKAN_EXTENSION_H
  32. #include "../openxr_api.h"
  33. #include "../util.h"
  34. #include "openxr_extension_wrapper.h"
  35. #include "core/templates/vector.h"
  36. // always include this as late as possible
  37. #include "../openxr_platform_inc.h"
  38. class OpenXRVulkanExtension : public OpenXRGraphicsExtensionWrapper, VulkanHooks {
  39. public:
  40. OpenXRVulkanExtension();
  41. virtual ~OpenXRVulkanExtension() override;
  42. virtual HashMap<String, bool *> get_requested_extensions() override;
  43. virtual void on_instance_created(const XrInstance p_instance) override;
  44. virtual void *set_session_create_and_get_next_pointer(void *p_next_pointer) override;
  45. virtual bool create_vulkan_instance(const VkInstanceCreateInfo *p_vulkan_create_info, VkInstance *r_instance) override;
  46. virtual bool get_physical_device(VkPhysicalDevice *r_device) override;
  47. virtual bool create_vulkan_device(const VkDeviceCreateInfo *p_device_create_info, VkDevice *r_device) override;
  48. virtual void get_usable_swapchain_formats(Vector<int64_t> &p_usable_swap_chains) override;
  49. virtual void get_usable_depth_formats(Vector<int64_t> &p_usable_swap_chains) override;
  50. virtual String get_swapchain_format_name(int64_t p_swapchain_format) const override;
  51. 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;
  52. virtual void cleanup_swapchain_graphics_data(void **p_swapchain_graphics_data) override;
  53. virtual bool create_projection_fov(const XrFovf p_fov, double p_z_near, double p_z_far, Projection &r_camera_matrix) override;
  54. virtual RID get_texture(void *p_swapchain_graphics_data, int p_image_index) override;
  55. private:
  56. static OpenXRVulkanExtension *singleton;
  57. static XrGraphicsBindingVulkanKHR graphics_binding_vulkan; // declaring this as static so we don't need to know its size and we only need it once when creating our session
  58. struct SwapchainGraphicsData {
  59. bool is_multiview;
  60. Vector<RID> texture_rids;
  61. };
  62. bool check_graphics_api_support(XrVersion p_desired_version);
  63. VkInstance vulkan_instance = nullptr;
  64. VkPhysicalDevice vulkan_physical_device = nullptr;
  65. VkDevice vulkan_device = nullptr;
  66. uint32_t vulkan_queue_family_index = 0;
  67. uint32_t vulkan_queue_index = 0;
  68. EXT_PROTO_XRRESULT_FUNC3(xrGetVulkanGraphicsRequirements2KHR, (XrInstance), p_instance, (XrSystemId), p_system_id, (XrGraphicsRequirementsVulkanKHR *), p_graphics_requirements)
  69. EXT_PROTO_XRRESULT_FUNC4(xrCreateVulkanInstanceKHR, (XrInstance), p_instance, (const XrVulkanInstanceCreateInfoKHR *), p_create_info, (VkInstance *), r_vulkan_instance, (VkResult *), r_vulkan_result)
  70. EXT_PROTO_XRRESULT_FUNC3(xrGetVulkanGraphicsDevice2KHR, (XrInstance), p_instance, (const XrVulkanGraphicsDeviceGetInfoKHR *), p_get_info, (VkPhysicalDevice *), r_vulkan_physical_device)
  71. EXT_PROTO_XRRESULT_FUNC4(xrCreateVulkanDeviceKHR, (XrInstance), p_instance, (const XrVulkanDeviceCreateInfoKHR *), p_create_info, (VkDevice *), r_device, (VkResult *), r_result)
  72. EXT_PROTO_XRRESULT_FUNC4(xrEnumerateSwapchainImages, (XrSwapchain), p_swapchain, (uint32_t), p_image_capacity_input, (uint32_t *), p_image_count_output, (XrSwapchainImageBaseHeader *), p_images)
  73. };
  74. #endif // OPENXR_VULKAN_EXTENSION_H