procedural-3d-engine/external/vulkan/vulkan_ios.h

49 lines
1.3 KiB
C
Raw Normal View History

2018-03-31 08:52:05 +02:00
#ifndef VULKAN_IOS_H_
#define VULKAN_IOS_H_ 1
/*
2024-01-30 06:58:12 +01:00
** Copyright 2015-2024 The Khronos Group Inc.
2018-03-31 08:52:05 +02:00
**
2020-08-12 17:58:00 +02:00
** SPDX-License-Identifier: Apache-2.0
2018-03-31 08:52:05 +02:00
*/
/*
** This header is generated from the Khronos Vulkan XML API Registry.
**
*/
2019-10-18 15:58:29 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2023-08-01 18:07:27 +02:00
// VK_MVK_ios_surface is a preprocessor guard. Do not pass it to API calls.
2018-03-31 08:52:05 +02:00
#define VK_MVK_ios_surface 1
2020-08-12 17:58:00 +02:00
#define VK_MVK_IOS_SURFACE_SPEC_VERSION 3
2018-03-31 08:52:05 +02:00
#define VK_MVK_IOS_SURFACE_EXTENSION_NAME "VK_MVK_ios_surface"
typedef VkFlags VkIOSSurfaceCreateFlagsMVK;
typedef struct VkIOSSurfaceCreateInfoMVK {
VkStructureType sType;
const void* pNext;
VkIOSSurfaceCreateFlagsMVK flags;
const void* pView;
} VkIOSSurfaceCreateInfoMVK;
typedef VkResult (VKAPI_PTR *PFN_vkCreateIOSSurfaceMVK)(VkInstance instance, const VkIOSSurfaceCreateInfoMVK* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
#ifndef VK_NO_PROTOTYPES
VKAPI_ATTR VkResult VKAPI_CALL vkCreateIOSSurfaceMVK(
VkInstance instance,
const VkIOSSurfaceCreateInfoMVK* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSurfaceKHR* pSurface);
#endif
#ifdef __cplusplus
}
#endif
#endif