| 
									
										
										
										
											2019-06-22 19:34:26 +03:00
										 |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | /*  rendering_context_driver_vulkan_wayland.h                             */ | 
					
						
							| 
									
										
										
										
											2019-06-22 19:34:26 +03:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-02-11 14:01:43 +01:00
										 |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							| 
									
										
										
										
											2019-06-22 19:34:26 +03:00
										 |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* 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
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2019-06-07 13:07:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-25 22:20:54 +03:00
										 |  |  | #ifdef VULKAN_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | #include "drivers/vulkan/rendering_context_driver_vulkan.h"
 | 
					
						
							| 
									
										
										
										
											2023-06-08 14:51:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | class RenderingContextDriverVulkanWayland : public RenderingContextDriverVulkan { | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2023-12-19 12:48:02 +01:00
										 |  |  | 	virtual const char *_get_platform_surface_extension() const override final; | 
					
						
							| 
									
										
										
										
											2019-06-07 13:07:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | protected: | 
					
						
							|  |  |  | 	SurfaceID surface_create(const void *p_platform_data) override final; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 13:07:57 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-12-19 12:48:02 +01:00
										 |  |  | 	struct WindowPlatformData { | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | 		struct wl_display *display; | 
					
						
							|  |  |  | 		struct wl_surface *surface; | 
					
						
							| 
									
										
										
										
											2023-12-19 12:48:02 +01:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2019-06-24 16:13:06 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 14:57:56 -03:00
										 |  |  | 	RenderingContextDriverVulkanWayland(); | 
					
						
							|  |  |  | 	~RenderingContextDriverVulkanWayland(); | 
					
						
							| 
									
										
										
										
											2019-06-07 13:07:57 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-25 22:20:54 +03:00
										 |  |  | #endif // VULKAN_ENABLED
 |