Path: blob/master/3rdparty/include/vulkan/vulkan_ios.h
16354 views
#ifndef VULKAN_IOS_H_1#define VULKAN_IOS_H_ 123#ifdef __cplusplus4extern "C" {5#endif67/*8** Copyright (c) 2015-2018 The Khronos Group Inc.9**10** Licensed under the Apache License, Version 2.0 (the "License");11** you may not use this file except in compliance with the License.12** You may obtain a copy of the License at13**14** http://www.apache.org/licenses/LICENSE-2.015**16** Unless required by applicable law or agreed to in writing, software17** distributed under the License is distributed on an "AS IS" BASIS,18** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.19** See the License for the specific language governing permissions and20** limitations under the License.21*/2223/*24** This header is generated from the Khronos Vulkan XML API Registry.25**26*/272829#define VK_MVK_ios_surface 130#define VK_MVK_IOS_SURFACE_SPEC_VERSION 231#define VK_MVK_IOS_SURFACE_EXTENSION_NAME "VK_MVK_ios_surface"3233typedef VkFlags VkIOSSurfaceCreateFlagsMVK;3435typedef struct VkIOSSurfaceCreateInfoMVK {36VkStructureType sType;37const void* pNext;38VkIOSSurfaceCreateFlagsMVK flags;39const void* pView;40} VkIOSSurfaceCreateInfoMVK;414243typedef VkResult (VKAPI_PTR *PFN_vkCreateIOSSurfaceMVK)(VkInstance instance, const VkIOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);4445#ifndef VK_NO_PROTOTYPES46VKAPI_ATTR VkResult VKAPI_CALL vkCreateIOSSurfaceMVK(47VkInstance instance,48const VkIOSSurfaceCreateInfoMVK* pCreateInfo,49const VkAllocationCallbacks* pAllocator,50VkSurfaceKHR* pSurface);51#endif5253#ifdef __cplusplus54}55#endif5657#endif585960