vulkan: Update the XML and headers to 1.1.123
[mesa.git] / include / vulkan / vulkan_ggp.h
1 #ifndef VULKAN_GGP_H_
2 #define VULKAN_GGP_H_ 1
3
4 /*
5 ** Copyright (c) 2015-2019 The Khronos Group Inc.
6 **
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
10 **
11 ** http://www.apache.org/licenses/LICENSE-2.0
12 **
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.
18 */
19
20 /*
21 ** This header is generated from the Khronos Vulkan XML API Registry.
22 **
23 */
24
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30
31
32 #define VK_GGP_stream_descriptor_surface 1
33 #define VK_GGP_STREAM_DESCRIPTOR_SURFACE_SPEC_VERSION 1
34 #define VK_GGP_STREAM_DESCRIPTOR_SURFACE_EXTENSION_NAME "VK_GGP_stream_descriptor_surface"
35 typedef VkFlags VkStreamDescriptorSurfaceCreateFlagsGGP;
36 typedef struct VkStreamDescriptorSurfaceCreateInfoGGP {
37 VkStructureType sType;
38 const void* pNext;
39 VkStreamDescriptorSurfaceCreateFlagsGGP flags;
40 GgpStreamDescriptor streamDescriptor;
41 } VkStreamDescriptorSurfaceCreateInfoGGP;
42
43 typedef VkResult (VKAPI_PTR *PFN_vkCreateStreamDescriptorSurfaceGGP)(VkInstance instance, const VkStreamDescriptorSurfaceCreateInfoGGP* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
44
45 #ifndef VK_NO_PROTOTYPES
46 VKAPI_ATTR VkResult VKAPI_CALL vkCreateStreamDescriptorSurfaceGGP(
47 VkInstance instance,
48 const VkStreamDescriptorSurfaceCreateInfoGGP* pCreateInfo,
49 const VkAllocationCallbacks* pAllocator,
50 VkSurfaceKHR* pSurface);
51 #endif
52
53
54 #define VK_GGP_frame_token 1
55 #define VK_GGP_FRAME_TOKEN_SPEC_VERSION 1
56 #define VK_GGP_FRAME_TOKEN_EXTENSION_NAME "VK_GGP_frame_token"
57 typedef struct VkPresentFrameTokenGGP {
58 VkStructureType sType;
59 const void* pNext;
60 GgpFrameToken frameToken;
61 } VkPresentFrameTokenGGP;
62
63
64 #ifdef __cplusplus
65 }
66 #endif
67
68 #endif