vulkan: Update the XML and headers to 1.1.106
[mesa.git] / include / vulkan / vulkan_ggp.h
1 #ifndef VULKAN_GGP_H_
2 #define VULKAN_GGP_H_ 1
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 /*
9 ** Copyright (c) 2015-2019 The Khronos Group Inc.
10 **
11 ** Licensed under the Apache License, Version 2.0 (the "License");
12 ** you may not use this file except in compliance with the License.
13 ** You may obtain a copy of the License at
14 **
15 ** http://www.apache.org/licenses/LICENSE-2.0
16 **
17 ** Unless required by applicable law or agreed to in writing, software
18 ** distributed under the License is distributed on an "AS IS" BASIS,
19 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ** See the License for the specific language governing permissions and
21 ** limitations under the License.
22 */
23
24 /*
25 ** This header is generated from the Khronos Vulkan XML API Registry.
26 **
27 */
28
29
30
31 #define VK_GGP_stream_descriptor_surface 1
32 #define VK_GGP_STREAM_DESCRIPTOR_SURFACE_SPEC_VERSION 1
33 #define VK_GGP_STREAM_DESCRIPTOR_SURFACE_EXTENSION_NAME "VK_GGP_stream_descriptor_surface"
34 typedef VkFlags VkStreamDescriptorSurfaceCreateFlagsGGP;
35 typedef struct VkStreamDescriptorSurfaceCreateInfoGGP {
36 VkStructureType sType;
37 const void* pNext;
38 VkStreamDescriptorSurfaceCreateFlagsGGP flags;
39 GgpStreamDescriptor streamDescriptor;
40 } VkStreamDescriptorSurfaceCreateInfoGGP;
41
42 typedef VkResult (VKAPI_PTR *PFN_vkCreateStreamDescriptorSurfaceGGP)(VkInstance instance, const VkStreamDescriptorSurfaceCreateInfoGGP* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
43
44 #ifndef VK_NO_PROTOTYPES
45 VKAPI_ATTR VkResult VKAPI_CALL vkCreateStreamDescriptorSurfaceGGP(
46 VkInstance instance,
47 const VkStreamDescriptorSurfaceCreateInfoGGP* pCreateInfo,
48 const VkAllocationCallbacks* pAllocator,
49 VkSurfaceKHR* pSurface);
50 #endif
51
52
53 #define VK_GGP_frame_token 1
54 #define VK_GGP_FRAME_TOKEN_SPEC_VERSION 1
55 #define VK_GGP_FRAME_TOKEN_EXTENSION_NAME "VK_GGP_frame_token"
56 typedef struct VkPresentFrameTokenGGP {
57 VkStructureType sType;
58 const void* pNext;
59 GgpFrameToken frameToken;
60 } VkPresentFrameTokenGGP;
61
62
63 #ifdef __cplusplus
64 }
65 #endif
66
67 #endif