portability/headers/vulkan/vulkan_fuchsia.h

48 lines
1.4 KiB
C
Raw Permalink Normal View History

2020-08-26 09:51:56 +10:00
#ifndef VULKAN_FUCHSIA_H_
#define VULKAN_FUCHSIA_H_ 1
/*
2020-09-20 10:46:22 +10:00
** Copyright (c) 2015-2020 The Khronos Group Inc.
2020-08-26 09:51:56 +10:00
**
2020-09-20 10:46:22 +10:00
** SPDX-License-Identifier: Apache-2.0
2020-08-26 09:51:56 +10:00
*/
/*
** This header is generated from the Khronos Vulkan XML API Registry.
**
*/
2020-09-20 10:46:22 +10:00
#ifdef __cplusplus
extern "C" {
#endif
2020-08-26 09:51:56 +10:00
#define VK_FUCHSIA_imagepipe_surface 1
#define VK_FUCHSIA_IMAGEPIPE_SURFACE_SPEC_VERSION 1
#define VK_FUCHSIA_IMAGEPIPE_SURFACE_EXTENSION_NAME "VK_FUCHSIA_imagepipe_surface"
typedef VkFlags VkImagePipeSurfaceCreateFlagsFUCHSIA;
typedef struct VkImagePipeSurfaceCreateInfoFUCHSIA {
VkStructureType sType;
const void* pNext;
VkImagePipeSurfaceCreateFlagsFUCHSIA flags;
zx_handle_t imagePipeHandle;
} VkImagePipeSurfaceCreateInfoFUCHSIA;
typedef VkResult (VKAPI_PTR *PFN_vkCreateImagePipeSurfaceFUCHSIA)(VkInstance instance, const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
#ifndef VK_NO_PROTOTYPES
VKAPI_ATTR VkResult VKAPI_CALL vkCreateImagePipeSurfaceFUCHSIA(
VkInstance instance,
const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkSurfaceKHR* pSurface);
#endif
#ifdef __cplusplus
}
#endif
#endif