1 #ifndef VULKAN_FUCHSIA_H_
2 #define VULKAN_FUCHSIA_H_ 1
5 ** Copyright (c) 2015-2019 The Khronos Group Inc.
7 ** Licensed under the Apache License, Version 2.0 (the "License");
8 ** you may not use this file except in compliance with the License.
9 ** You may obtain a copy of the License at
11 ** http://www.apache.org/licenses/LICENSE-2.0
13 ** Unless required by applicable law or agreed to in writing, software
14 ** distributed under the License is distributed on an "AS IS" BASIS,
15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ** See the License for the specific language governing permissions and
17 ** limitations under the License.
21 ** This header is generated from the Khronos Vulkan XML API Registry.
32 #define VK_FUCHSIA_imagepipe_surface 1
33 #define VK_FUCHSIA_IMAGEPIPE_SURFACE_SPEC_VERSION 1
34 #define VK_FUCHSIA_IMAGEPIPE_SURFACE_EXTENSION_NAME "VK_FUCHSIA_imagepipe_surface"
35 typedef VkFlags VkImagePipeSurfaceCreateFlagsFUCHSIA;
36 typedef struct VkImagePipeSurfaceCreateInfoFUCHSIA {
37 VkStructureType sType;
39 VkImagePipeSurfaceCreateFlagsFUCHSIA flags;
40 zx_handle_t imagePipeHandle;
41 } VkImagePipeSurfaceCreateInfoFUCHSIA;
43 typedef VkResult (VKAPI_PTR *PFN_vkCreateImagePipeSurfaceFUCHSIA)(VkInstance instance, const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
45 #ifndef VK_NO_PROTOTYPES
46 VKAPI_ATTR VkResult VKAPI_CALL vkCreateImagePipeSurfaceFUCHSIA(
48 const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo,
49 const VkAllocationCallbacks* pAllocator,
50 VkSurfaceKHR* pSurface);