| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | /*  rendering_context_driver_vulkan_ios.mm                                */ | 
					
						
							| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | #import "rendering_context_driver_vulkan_ios.h" | 
					
						
							| 
									
										
										
										
											2023-06-08 14:51:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-25 22:20:54 +03:00
										 |  |  | #ifdef VULKAN_ENABLED | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-12 14:24:54 +03:00
										 |  |  | #ifdef USE_VOLK | 
					
						
							|  |  |  | #include <volk.h> | 
					
						
							|  |  |  | #else | 
					
						
							| 
									
										
										
										
											2024-02-05 23:50:48 +02:00
										 |  |  | #include <vulkan/vulkan_metal.h> | 
					
						
							| 
									
										
										
										
											2021-08-12 14:24:54 +03:00
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | const char *RenderingContextDriverVulkanIOS::_get_platform_surface_extension() const { | 
					
						
							| 
									
										
										
										
											2024-02-05 23:50:48 +02:00
										 |  |  | 	return VK_EXT_METAL_SURFACE_EXTENSION_NAME; | 
					
						
							| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | RenderingContextDriver::SurfaceID RenderingContextDriverVulkanIOS::surface_create(const void *p_platform_data) { | 
					
						
							|  |  |  | 	const WindowPlatformData *wpd = (const WindowPlatformData *)(p_platform_data); | 
					
						
							| 
									
										
										
										
											2023-12-19 12:48:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-05 23:50:48 +02:00
										 |  |  | 	VkMetalSurfaceCreateInfoEXT create_info = {}; | 
					
						
							|  |  |  | 	create_info.sType = VK_STRUCTURE_TYPE_METAL_SURFACE_CREATE_INFO_EXT; | 
					
						
							|  |  |  | 	create_info.pLayer = *wpd->layer_ptr; | 
					
						
							| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | 	VkSurfaceKHR vk_surface = VK_NULL_HANDLE; | 
					
						
							| 
									
										
										
										
											2024-06-30 19:30:54 -03:00
										 |  |  | 	VkResult err = vkCreateMetalSurfaceEXT(instance_get(), &create_info, get_allocation_callbacks(VK_OBJECT_TYPE_SURFACE_KHR), &vk_surface); | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | 	ERR_FAIL_COND_V(err != VK_SUCCESS, SurfaceID()); | 
					
						
							| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | 	Surface *surface = memnew(Surface); | 
					
						
							|  |  |  | 	surface->vk_surface = vk_surface; | 
					
						
							|  |  |  | 	return SurfaceID(surface); | 
					
						
							| 
									
										
										
										
											2020-02-21 22:01:13 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | RenderingContextDriverVulkanIOS::RenderingContextDriverVulkanIOS() { | 
					
						
							|  |  |  | 	// Does nothing. | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-07-15 21:59:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | RenderingContextDriverVulkanIOS::~RenderingContextDriverVulkanIOS() { | 
					
						
							|  |  |  | 	// Does nothing. | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-10-25 22:20:54 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // VULKAN_ENABLED |