zdoom-macos-deps/deps/vulkan-headers/include/vulkan/vulkan_metal.h

55 lines
1.3 KiB
C
Raw Normal View History

2019-04-20 12:57:29 +00:00
#ifndef VULKAN_METAL_H_
#define VULKAN_METAL_H_ 1
/*
2022-02-10 10:25:43 +00:00
** Copyright 2015-2022 The Khronos Group Inc.
2019-04-20 12:57:29 +00:00
**
2020-08-01 12:43:20 +00:00
** SPDX-License-Identifier: Apache-2.0
2019-04-20 12:57:29 +00:00
*/
/*
** This header is generated from the Khronos Vulkan XML API Registry.
**
*/
2019-09-11 19:35:24 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2019-04-20 12:57:29 +00:00
#define VK_EXT_metal_surface 1
#ifdef __OBJC__
@class CAMetalLayer;
#else
typedef void CAMetalLayer;
#endif
#define VK_EXT_METAL_SURFACE_SPEC_VERSION 1
#define VK_EXT_METAL_SURFACE_EXTENSION_NAME "VK_EXT_metal_surface"
typedef VkFlags VkMetalSurfaceCreateFlagsEXT;
typedef struct VkMetalSurfaceCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkMetalSurfaceCreateFlagsEXT flags;
const CAMetalLayer* pLayer;
} VkMetalSurfaceCreateInfoEXT;
typedef VkResult (VKAPI_PTR *PFN_vkCreateMetalSurfaceEXT)(VkInstance instance, const VkMetalSurfaceCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
#ifndef VK_NO_PROTOTYPES
VKAPI_ATTR VkResult VKAPI_CALL vkCreateMetalSurfaceEXT(
VkInstance instance,
const VkMetalSurfaceCreateInfoEXT* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSurfaceKHR* pSurface);
#endif
#ifdef __cplusplus
}
#endif
#endif