2019-06-22 16:34:26 +00:00
|
|
|
/**************************************************************************/
|
2023-12-19 17:57:56 +00:00
|
|
|
/* rendering_context_driver_vulkan_macos.mm */
|
2019-06-22 16:34:26 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
2020-02-11 13:01:43 +00:00
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
2019-06-22 16:34:26 +00: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 17:57:56 +00:00
|
|
|
#include "rendering_context_driver_vulkan_macos.h"
|
2023-06-08 12:51:32 +00:00
|
|
|
|
|
|
|
#ifdef VULKAN_ENABLED
|
|
|
|
|
2021-08-12 11:24:54 +00:00
|
|
|
#ifdef USE_VOLK
|
|
|
|
#include <volk.h>
|
|
|
|
#else
|
2024-02-05 21:50:48 +00:00
|
|
|
#include <vulkan/vulkan_metal.h>
|
2021-08-12 11:24:54 +00:00
|
|
|
#endif
|
2019-06-22 16:34:26 +00:00
|
|
|
|
2023-12-19 17:57:56 +00:00
|
|
|
const char *RenderingContextDriverVulkanMacOS::_get_platform_surface_extension() const {
|
2024-02-05 21:50:48 +00:00
|
|
|
return VK_EXT_METAL_SURFACE_EXTENSION_NAME;
|
2019-06-22 16:34:26 +00:00
|
|
|
}
|
|
|
|
|
2023-12-19 17:57:56 +00:00
|
|
|
RenderingContextDriver::SurfaceID RenderingContextDriverVulkanMacOS::surface_create(const void *p_platform_data) {
|
|
|
|
const WindowPlatformData *wpd = (const WindowPlatformData *)(p_platform_data);
|
2023-12-19 11:48:02 +00:00
|
|
|
|
2024-02-05 21:50:48 +00:00
|
|
|
VkMetalSurfaceCreateInfoEXT create_info = {};
|
|
|
|
create_info.sType = VK_STRUCTURE_TYPE_METAL_SURFACE_CREATE_INFO_EXT;
|
|
|
|
create_info.pLayer = *wpd->layer_ptr;
|
2019-06-22 16:34:26 +00:00
|
|
|
|
2023-12-19 17:57:56 +00:00
|
|
|
VkSurfaceKHR vk_surface = VK_NULL_HANDLE;
|
2024-02-05 21:50:48 +00:00
|
|
|
VkResult err = vkCreateMetalSurfaceEXT(instance_get(), &create_info, nullptr, &vk_surface);
|
2023-12-19 17:57:56 +00:00
|
|
|
ERR_FAIL_COND_V(err != VK_SUCCESS, SurfaceID());
|
|
|
|
|
|
|
|
Surface *surface = memnew(Surface);
|
|
|
|
surface->vk_surface = vk_surface;
|
|
|
|
return SurfaceID(surface);
|
2019-06-22 16:34:26 +00:00
|
|
|
}
|
|
|
|
|
2023-12-19 17:57:56 +00:00
|
|
|
RenderingContextDriverVulkanMacOS::RenderingContextDriverVulkanMacOS() {
|
|
|
|
// Does nothing.
|
2019-06-22 16:34:26 +00:00
|
|
|
}
|
|
|
|
|
2023-12-19 17:57:56 +00:00
|
|
|
RenderingContextDriverVulkanMacOS::~RenderingContextDriverVulkanMacOS() {
|
|
|
|
// Does nothing.
|
2019-06-22 16:34:26 +00:00
|
|
|
}
|
2022-10-25 19:20:54 +00:00
|
|
|
|
|
|
|
#endif // VULKAN_ENABLED
|