bgfx/3rdparty/khronos/vulkan-local/vulkan_ios.h

49 lines
1.3 KiB
C
Raw Normal View History

2019-01-24 09:48:32 +03:00
#ifndef VULKAN_IOS_H_
#define VULKAN_IOS_H_ 1
/*
2024-01-13 06:55:31 +03:00
** Copyright 2015-2024 The Khronos Group Inc.
2019-01-24 09:48:32 +03:00
**
2020-06-19 07:36:19 +03:00
** SPDX-License-Identifier: Apache-2.0
2019-01-24 09:48:32 +03:00
*/
/*
** This header is generated from the Khronos Vulkan XML API Registry.
**
*/
2019-08-20 05:32:56 +03:00
#ifdef __cplusplus
extern "C" {
#endif
2019-08-07 05:25:00 +03:00
2023-09-04 18:26:39 +03:00
// VK_MVK_ios_surface is a preprocessor guard. Do not pass it to API calls.
2019-01-24 09:48:32 +03:00
#define VK_MVK_ios_surface 1
2020-08-15 06:35:18 +03:00
#define VK_MVK_IOS_SURFACE_SPEC_VERSION 3
2019-01-24 09:48:32 +03: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