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

55 lines
1.3 KiB
C
Raw Normal View History

2019-03-11 22:21:49 +03:00
#ifndef VULKAN_METAL_H_
#define VULKAN_METAL_H_ 1
/*
2022-01-29 06:57:47 +03:00
** Copyright 2015-2022 The Khronos Group Inc.
2019-03-11 22:21:49 +03:00
**
2020-06-19 07:36:19 +03:00
** SPDX-License-Identifier: Apache-2.0
2019-03-11 22:21:49 +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
2019-03-11 22:21:49 +03: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