1#ifndef VULKAN_MACOS_H_ 2#define VULKAN_MACOS_H_ 1 3 4/* 5** Copyright 2015-2022 The Khronos Group Inc. 6** 7** SPDX-License-Identifier: Apache-2.0 8*/ 9 10/* 11** This header is generated from the Khronos Vulkan XML API Registry. 12** 13*/ 14 15 16#ifdef __cplusplus 17extern "C" { 18#endif 19 20 21 22#define VK_MVK_macos_surface 1 23#define VK_MVK_MACOS_SURFACE_SPEC_VERSION 3 24#define VK_MVK_MACOS_SURFACE_EXTENSION_NAME "VK_MVK_macos_surface" 25typedef VkFlags VkMacOSSurfaceCreateFlagsMVK; 26typedef struct VkMacOSSurfaceCreateInfoMVK { 27 VkStructureType sType; 28 const void* pNext; 29 VkMacOSSurfaceCreateFlagsMVK flags; 30 const void* pView; 31} VkMacOSSurfaceCreateInfoMVK; 32 33typedef VkResult (VKAPI_PTR *PFN_vkCreateMacOSSurfaceMVK)(VkInstance instance, const VkMacOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); 34 35#ifndef VK_NO_PROTOTYPES 36VKAPI_ATTR VkResult VKAPI_CALL vkCreateMacOSSurfaceMVK( 37 VkInstance instance, 38 const VkMacOSSurfaceCreateInfoMVK* pCreateInfo, 39 const VkAllocationCallbacks* pAllocator, 40 VkSurfaceKHR* pSurface); 41#endif 42 43#ifdef __cplusplus 44} 45#endif 46 47#endif 48