vulkan: import latest registry for 1.0.39 extensions.
[mesa.git] / src / vulkan / registry / vk.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <registry>
3 <comment>
4 Copyright (c) 2015-2017 The Khronos Group Inc.
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and/or associated documentation files (the
8 "Materials"), to deal in the Materials without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Materials, and to
11 permit persons to whom the Materials are furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice shall be included
15 in all copies or substantial portions of the Materials.
16
17 THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
24
25 ------------------------------------------------------------------------
26
27 This file, vk.xml, is the Vulkan API Registry. It is a critically important
28 and normative part of the Vulkan Specification, including a canonical
29 machine-readable definition of the API, parameter and member validation
30 language incorporated into the Specification and reference pages, and other
31 material which is registered by Khronos, such as tags used by extension and
32 layer authors. The only authoritative version of vk.xml is the one
33 maintained in the master branch of the Khronos Vulkan GitHub project.
34 </comment>
35
36 <!-- SECTION: Vulkan vendor IDs for physical devices without PCI vendor IDs -->
37 <vendorids>
38 <vendorid name="KHR" id="0x10000" comment="This is the next available Khronos vendor ID"/>
39 <vendorid name="VIV" id="0x10001" comment="Vivante vendor ID"/>
40 <vendorid name="VSI" id="0x10002" comment="VeriSilicon vendor ID"/>
41 </vendorids>
42
43 <!-- SECTION: Vulkan vendor/author tags for extensions and layers -->
44 <tags>
45 <tag name="IMG" author="Imagination Technologies" contact="Michael Worcester @michaelworcester"/>
46 <tag name="AMD" author="Advanced Micro Devices, Inc." contact="Daniel Rakos @aqnuep"/>
47 <tag name="ARM" author="ARM Limited" contact="Jan-Harald Fredriksen @janharald"/>
48 <tag name="FSL" author="Freescale Semiconductor, Inc." contact="Norbert Nopper @FslNopper"/>
49 <tag name="BRCM" author="Broadcom Corporation" contact="Graeme Leese @gnl21"/>
50 <tag name="NXP" author="NXP Semiconductors N.V." contact="Norbert Nopper @FslNopper"/>
51 <tag name="NV" author="NVIDIA Corporation" contact="Daniel Koch @dgkoch"/>
52 <tag name="NVX" author="NVIDIA Corporation" contact="Daniel Koch @dgkoch"/>
53 <tag name="VIV" author="Vivante Corporation" contact="Yanjun Zhang @yanjunzhang"/>
54 <tag name="VSI" author="VeriSilicon Holdings Co., Ltd." contact="Yanjun Zhang @yanjunzhang"/>
55 <tag name="KDAB" author="KDAB" contact="Sean Harmer @seanharmer"/>
56 <tag name="ANDROID" author="Google, Inc." contact="Jesse Hall @jessehall"/>
57 <tag name="CHROMIUM" author="Google, Inc." contact="Jesse Hall @jessehall"/>
58 <tag name="GOOGLE" author="Google, Inc." contact="Jesse Hall @jessehall"/>
59 <tag name="QCOM" author="Qualcomm Technologies, Inc." contact="Maurice Ribble @mribble"/>
60 <tag name="LUNARG" author="LunarG, Inc." contact="Karen Ghavam @KarenGhavam"/>
61 <tag name="SAMSUNG" author="Samsung Electronics Co., Ltd." contact="Alon Or-bach @alonorbach"/>
62 <tag name="SEC" author="Samsung Electronics Co., Ltd." contact="Alon Or-bach @alonorbach"/>
63 <tag name="TIZEN" author="Samsung Electronics Co., Ltd." contact="Alon Or-bach @alonorbach"/>
64 <tag name="RENDERDOC" author="RenderDoc (renderdoc.org)" contact="baldurk@baldurk.org"/>
65 <tag name="NN" author="Nintendo Co., Ltd." contact="Yasuhiro Yoshioka @yoshioka_yasuhiro"/>
66 </tags>
67
68 <!-- SECTION: Vulkan type definitions -->
69 <types>
70 <type name="vk_platform" category="include">#include "vk_platform.h"</type>
71 <!-- WSI extensions -->
72 <type category="include">#include "<name>vulkan.h</name>"</type>
73 <type category="include">#include &lt;<name>X11/Xlib.h</name>&gt;</type>
74 <type category="include">#include &lt;<name>X11/extensions/Xrandr.h</name>&gt;</type>
75 <type category="include">#include &lt;<name>android/native_window.h</name>&gt;</type>
76 <type category="include">#include &lt;<name>mir_toolkit/client_types.h</name>&gt;</type>
77 <type category="include">#include &lt;<name>wayland-client.h</name>&gt;</type>
78 <type category="include">#include &lt;<name>windows.h</name>&gt;</type>
79 <type category="include">#include &lt;<name>xcb/xcb.h</name>&gt;</type>
80
81 <type requires="X11/Xlib.h" name="Display"/>
82 <type requires="X11/Xlib.h" name="VisualID"/>
83 <type requires="X11/Xlib.h" name="Window"/>
84 <type requires="X11/extensions/Xrandr.h" name="RROutput"/>
85 <type requires="android/native_window.h" name="ANativeWindow"/>
86 <type requires="mir_toolkit/client_types.h" name="MirConnection"/>
87 <type requires="mir_toolkit/client_types.h" name="MirSurface"/>
88 <type requires="wayland-client.h" name="wl_display"/>
89 <type requires="wayland-client.h" name="wl_surface"/>
90 <type requires="windows.h" name="HINSTANCE"/>
91 <type requires="windows.h" name="HWND"/>
92 <type requires="windows.h" name="HANDLE"/>
93 <type requires="windows.h" name="SECURITY_ATTRIBUTES"/>
94 <type requires="windows.h" name="DWORD"/>
95 <type requires="xcb/xcb.h" name="xcb_connection_t"/>
96 <type requires="xcb/xcb.h" name="xcb_visualid_t"/>
97 <type requires="xcb/xcb.h" name="xcb_window_t"/>
98
99 <type category="define">#define <name>VK_MAKE_VERSION</name>(major, minor, patch) \
100 (((major) &lt;&lt; 22) | ((minor) &lt;&lt; 12) | (patch))</type>
101 <type category="define">#define <name>VK_VERSION_MAJOR</name>(version) ((uint32_t)(version) &gt;&gt; 22)</type>
102 <type category="define">#define <name>VK_VERSION_MINOR</name>(version) (((uint32_t)(version) &gt;&gt; 12) &amp; 0x3ff)</type>
103 <type category="define">#define <name>VK_VERSION_PATCH</name>(version) ((uint32_t)(version) &amp; 0xfff)</type>
104
105 <type category="define">// DEPRECATED: This define has been removed. Specific version defines (e.g. VK_API_VERSION_1_0), or the VK_MAKE_VERSION macro, should be used instead.
106 //#define <name>VK_API_VERSION</name> <type>VK_MAKE_VERSION</type>(1, 0, 0)</type> <!-- The patch version here should never be set to anything other than 0 -->
107 <type category="define">// Vulkan 1.0 version number
108 #define <name>VK_API_VERSION_1_0</name> <type>VK_MAKE_VERSION</type>(1, 0, 0)</type> <!-- The patch version here should never be set to anything other than 0 -->
109 <type category="define">// Version of this file
110 #define <name>VK_HEADER_VERSION</name> 39</type>
111
112 <type category="define">
113 #define <name>VK_DEFINE_HANDLE</name>(object) typedef struct object##_T* object;</type>
114
115 <type category="define" name="VK_DEFINE_NON_DISPATCHABLE_HANDLE">
116 #if !defined(VK_DEFINE_NON_DISPATCHABLE_HANDLE)
117 #if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) &amp;&amp; !defined(__ILP32__) ) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
118 #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object;
119 #else
120 #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object;
121 #endif
122 #endif
123 </type>
124
125 <type category="define">
126 #define <name>VK_NULL_HANDLE</name> 0
127 </type>
128
129 <type category="basetype">typedef <type>uint32_t</type> <name>VkSampleMask</name>;</type>
130 <type category="basetype">typedef <type>uint32_t</type> <name>VkBool32</name>;</type>
131 <type category="basetype">typedef <type>uint32_t</type> <name>VkFlags</name>;</type>
132 <type category="basetype">typedef <type>uint64_t</type> <name>VkDeviceSize</name>;</type>
133 <!-- Basic C types, pulled in via vk_platform.h -->
134 <type requires="vk_platform" name="void"/>
135 <type requires="vk_platform" name="char"/>
136 <type requires="vk_platform" name="float"/>
137 <type requires="vk_platform" name="uint8_t"/>
138 <type requires="vk_platform" name="uint32_t"/>
139 <type requires="vk_platform" name="uint64_t"/>
140 <type requires="vk_platform" name="int32_t"/>
141 <type requires="vk_platform" name="size_t"/>
142 <!-- Bitmask types -->
143 <type category="bitmask">typedef <type>VkFlags</type> <name>VkFramebufferCreateFlags</name>;</type> <!-- creation flags -->
144 <type category="bitmask">typedef <type>VkFlags</type> <name>VkQueryPoolCreateFlags</name>;</type> <!-- creation flags -->
145 <type category="bitmask">typedef <type>VkFlags</type> <name>VkRenderPassCreateFlags</name>;</type> <!-- creation flags -->
146 <type category="bitmask">typedef <type>VkFlags</type> <name>VkSamplerCreateFlags</name>;</type> <!-- creation flags -->
147 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineLayoutCreateFlags</name>;</type> <!-- creation flags -->
148 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineCacheCreateFlags</name>;</type> <!-- creation flags -->
149 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineDepthStencilStateCreateFlags</name>;</type> <!-- creation flags -->
150 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineDynamicStateCreateFlags</name>;</type> <!-- creation flags -->
151 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineColorBlendStateCreateFlags</name>;</type> <!-- creation flags -->
152 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineMultisampleStateCreateFlags</name>;</type> <!-- creation flags -->
153 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineRasterizationStateCreateFlags</name>;</type> <!-- creation flags -->
154 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineViewportStateCreateFlags</name>;</type> <!-- creation flags -->
155 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineTessellationStateCreateFlags</name>;</type> <!-- creation flags -->
156 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineInputAssemblyStateCreateFlags</name>;</type><!-- creation flags -->
157 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineVertexInputStateCreateFlags</name>;</type> <!-- creation flags -->
158 <type category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineShaderStageCreateFlags</name>;</type> <!-- creation flags -->
159 <type category="bitmask">typedef <type>VkFlags</type> <name>VkDescriptorSetLayoutCreateFlags</name>;</type> <!-- creation flags -->
160 <type category="bitmask">typedef <type>VkFlags</type> <name>VkBufferViewCreateFlags</name>;</type> <!-- creation flags -->
161 <type category="bitmask">typedef <type>VkFlags</type> <name>VkInstanceCreateFlags</name>;</type> <!-- creation flags -->
162 <type category="bitmask">typedef <type>VkFlags</type> <name>VkDeviceCreateFlags</name>;</type> <!-- creation flags -->
163 <type category="bitmask">typedef <type>VkFlags</type> <name>VkDeviceQueueCreateFlags</name>;</type> <!-- creation flags -->
164 <type requires="VkQueueFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkQueueFlags</name>;</type> <!-- Queue capabilities -->
165 <type requires="VkMemoryPropertyFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkMemoryPropertyFlags</name>;</type> <!-- Memory properties passed into vkAllocateMemory(). -->
166 <type requires="VkMemoryHeapFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkMemoryHeapFlags</name>;</type> <!-- Memory heap flags -->
167 <type requires="VkAccessFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkAccessFlags</name>;</type> <!-- Memory access flags passed to barrier/dependency operations -->
168 <type requires="VkBufferUsageFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkBufferUsageFlags</name>;</type> <!-- Buffer usage flags -->
169 <type requires="VkBufferCreateFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkBufferCreateFlags</name>;</type> <!-- Buffer creation flags -->
170 <type requires="VkShaderStageFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkShaderStageFlags</name>;</type> <!-- Shader stage flags -->
171 <type requires="VkImageUsageFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkImageUsageFlags</name>;</type> <!-- Image usage flags -->
172 <type requires="VkImageCreateFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkImageCreateFlags</name>;</type> <!-- Image creation flags -->
173 <type category="bitmask">typedef <type>VkFlags</type> <name>VkImageViewCreateFlags</name>;</type> <!-- Image view creation flags (no bits yet) -->
174 <type requires="VkPipelineCreateFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineCreateFlags</name>;</type> <!-- Pipeline creation flags -->
175 <type requires="VkColorComponentFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkColorComponentFlags</name>;</type> <!-- Color component flags -->
176 <type requires="VkFenceCreateFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkFenceCreateFlags</name>;</type> <!-- Fence creation flags -->
177 <type category="bitmask">typedef <type>VkFlags</type> <name>VkSemaphoreCreateFlags</name>;</type> <!-- Semaphore creation flags -->
178 <type requires="VkFormatFeatureFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkFormatFeatureFlags</name>;</type> <!-- Format capability flags -->
179 <type requires="VkQueryControlFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkQueryControlFlags</name>;</type> <!-- Query control flags -->
180 <type requires="VkQueryResultFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkQueryResultFlags</name>;</type> <!-- Query result flags -->
181 <type category="bitmask">typedef <type>VkFlags</type> <name>VkShaderModuleCreateFlags</name>;</type> <!-- Shader module creation flags (no bits yet) -->
182 <type category="bitmask">typedef <type>VkFlags</type> <name>VkEventCreateFlags</name>;</type> <!-- Event creation flags (no bits yet) -->
183 <type requires="VkCommandPoolCreateFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkCommandPoolCreateFlags</name>;</type> <!-- Command pool creation flags -->
184 <type requires="VkCommandPoolResetFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkCommandPoolResetFlags</name>;</type> <!-- Command pool reset flags -->
185 <type requires="VkCommandBufferResetFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkCommandBufferResetFlags</name>;</type> <!-- Command buffer reset flags -->
186 <type requires="VkCommandBufferUsageFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkCommandBufferUsageFlags</name>;</type> <!-- Command buffer usage flags -->
187 <type requires="VkQueryPipelineStatisticFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkQueryPipelineStatisticFlags</name>;</type> <!-- Pipeline statistics flags -->
188 <type category="bitmask">typedef <type>VkFlags</type> <name>VkMemoryMapFlags</name>;</type> <!-- Memory mapping flags (no bits yet) -->
189 <type requires="VkImageAspectFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkImageAspectFlags</name>;</type> <!-- Bitmask of image aspects -->
190 <type requires="VkSparseMemoryBindFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkSparseMemoryBindFlags</name>;</type> <!-- Sparse memory bind flags -->
191 <type requires="VkSparseImageFormatFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkSparseImageFormatFlags</name>;</type> <!-- Sparse image memory requirements flags -->
192 <type category="bitmask">typedef <type>VkFlags</type> <name>VkSubpassDescriptionFlags</name>;</type> <!-- Subpass description flags -->
193 <type requires="VkPipelineStageFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkPipelineStageFlags</name>;</type> <!-- Pipeline stages -->
194 <type requires="VkSampleCountFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkSampleCountFlags</name>;</type> <!-- Pipeline stages -->
195 <type requires="VkAttachmentDescriptionFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkAttachmentDescriptionFlags</name>;</type> <!-- Render pass attachment description flags -->
196 <type requires="VkStencilFaceFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkStencilFaceFlags</name>;</type> <!-- Stencil face flags -->
197 <type requires="VkCullModeFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkCullModeFlags</name>;</type> <!-- Cull mode flags -->
198 <type requires="VkDescriptorPoolCreateFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkDescriptorPoolCreateFlags</name>;</type> <!-- Descriptor pool creation flags -->
199 <type category="bitmask">typedef <type>VkFlags</type> <name>VkDescriptorPoolResetFlags</name>;</type> <!-- Descriptor pool reset flags -->
200 <type requires="VkDependencyFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkDependencyFlags</name>;</type> <!-- Pipeline barrier and subpass dependency flags -->
201
202 <type requires="VkIndirectCommandsLayoutUsageFlagBitsNVX" category="bitmask">typedef <type>VkFlags</type> <name>VkIndirectCommandsLayoutUsageFlagsNVX</name>;</type> <!-- Device generated commands usage flags -->
203 <type requires="VkObjectEntryUsageFlagBitsNVX" category="bitmask">typedef <type>VkFlags</type> <name>VkObjectEntryUsageFlagsNVX</name>;</type> <!-- Object usage flags -->
204
205 <!-- WSI extensions -->
206 <type requires="VkCompositeAlphaFlagBitsKHR" category="bitmask">typedef <type>VkFlags</type> <name>VkCompositeAlphaFlagsKHR</name>;</type>
207 <type requires="VkDisplayPlaneAlphaFlagBitsKHR" category="bitmask">typedef <type>VkFlags</type> <name>VkDisplayPlaneAlphaFlagsKHR</name>;</type>
208 <type requires="VkSurfaceTransformFlagBitsKHR" category="bitmask">typedef <type>VkFlags</type> <name>VkSurfaceTransformFlagsKHR</name>;</type>
209 <type category="bitmask">typedef <type>VkFlags</type> <name>VkSwapchainCreateFlagsKHR</name>;</type> <!-- creation flags -->
210 <type category="bitmask">typedef <type>VkFlags</type> <name>VkDisplayModeCreateFlagsKHR</name>;</type> <!-- creation flags -->
211 <type category="bitmask">typedef <type>VkFlags</type> <name>VkDisplaySurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
212 <type category="bitmask">typedef <type>VkFlags</type> <name>VkAndroidSurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
213 <type category="bitmask">typedef <type>VkFlags</type> <name>VkMirSurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
214 <type category="bitmask">typedef <type>VkFlags</type> <name>VkViSurfaceCreateFlagsNN</name>;</type> <!-- creation flags -->
215 <type category="bitmask">typedef <type>VkFlags</type> <name>VkWaylandSurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
216 <type category="bitmask">typedef <type>VkFlags</type> <name>VkWin32SurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
217 <type category="bitmask">typedef <type>VkFlags</type> <name>VkXlibSurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
218 <type category="bitmask">typedef <type>VkFlags</type> <name>VkXcbSurfaceCreateFlagsKHR</name>;</type> <!-- creation flags -->
219
220 <type requires="VkDebugReportFlagBitsEXT" category="bitmask">typedef <type>VkFlags</type> <name>VkDebugReportFlagsEXT</name>;</type>
221 <type category="bitmask">typedef <type>VkFlags</type> <name>VkCommandPoolTrimFlagsKHR</name>;</type>
222 <type requires="VkExternalMemoryHandleTypeFlagBitsNV" category="bitmask">typedef <type>VkFlags</type> <name>VkExternalMemoryHandleTypeFlagsNV</name>;</type>
223 <type requires="VkExternalMemoryFeatureFlagBitsNV" category="bitmask">typedef <type>VkFlags</type> <name>VkExternalMemoryFeatureFlagsNV</name>;</type>
224 <type requires="VkSurfaceCounterFlagBitsEXT" category="bitmask">typedef <type>VkFlags</type> <name>VkSurfaceCounterFlagsEXT</name>;</type>
225
226 <!-- Types which can be void pointers or class pointers, selected at compile time -->
227 <type category="handle"><type>VK_DEFINE_HANDLE</type>(<name>VkInstance</name>)</type>
228 <type category="handle" parent="VkInstance"><type>VK_DEFINE_HANDLE</type>(<name>VkPhysicalDevice</name>)</type>
229 <type category="handle" parent="VkPhysicalDevice"><type>VK_DEFINE_HANDLE</type>(<name>VkDevice</name>)</type>
230 <type category="handle" parent="VkDevice"><type>VK_DEFINE_HANDLE</type>(<name>VkQueue</name>)</type>
231 <type category="handle" parent="VkCommandPool"><type>VK_DEFINE_HANDLE</type>(<name>VkCommandBuffer</name>)</type>
232 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDeviceMemory</name>)</type>
233 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkCommandPool</name>)</type>
234 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkBuffer</name>)</type>
235 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkBufferView</name>)</type>
236 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkImage</name>)</type>
237 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkImageView</name>)</type>
238 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkShaderModule</name>)</type>
239 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkPipeline</name>)</type>
240 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkPipelineLayout</name>)</type>
241 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkSampler</name>)</type>
242 <type category="handle" parent="VkDescriptorPool"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDescriptorSet</name>)</type>
243 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDescriptorSetLayout</name>)</type>
244 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDescriptorPool</name>)</type>
245 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkFence</name>)</type>
246 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkSemaphore</name>)</type>
247 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkEvent</name>)</type>
248 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkQueryPool</name>)</type>
249 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkFramebuffer</name>)</type>
250 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkRenderPass</name>)</type>
251 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkPipelineCache</name>)</type>
252 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkObjectTableNVX</name>)</type>
253 <type category="handle" parent="VkDevice"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkIndirectCommandsLayoutNVX</name>)</type>
254
255 <!-- WSI extensions -->
256 <type category="handle"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDisplayKHR</name>)</type>
257 <type category="handle" parent="VkPhysicalDevice,VkDisplayKHR"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDisplayModeKHR</name>)</type>
258 <type category="handle" parent="VkInstance"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkSurfaceKHR</name>)</type>
259 <type category="handle" parent="VkSurfaceKHR"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkSwapchainKHR</name>)</type>
260 <type category="handle" parent="VkInstance"><type>VK_DEFINE_NON_DISPATCHABLE_HANDLE</type>(<name>VkDebugReportCallbackEXT</name>)</type>
261
262 <!-- Types generated from corresponding <enums> tags below -->
263 <type name="VkAttachmentLoadOp" category="enum"/>
264 <type name="VkAttachmentStoreOp" category="enum"/>
265 <type name="VkBlendFactor" category="enum"/>
266 <type name="VkBlendOp" category="enum"/>
267 <type name="VkBorderColor" category="enum"/>
268 <type name="VkFramebufferCreateFlagBits" category="enum"/>
269 <type name="VkQueryPoolCreateFlagBits" category="enum"/>
270 <type name="VkRenderPassCreateFlagBits" category="enum"/>
271 <type name="VkSamplerCreateFlagBits" category="enum"/>
272 <type name="VkPipelineCacheHeaderVersion" category="enum"/>
273 <type name="VkPipelineLayoutCreateFlagBits" category="enum"/>
274 <type name="VkPipelineCacheCreateFlagBits" category="enum"/>
275 <type name="VkPipelineDepthStencilStateCreateFlagBits" category="enum"/>
276 <type name="VkPipelineDynamicStateCreateFlagBits" category="enum"/>
277 <type name="VkPipelineColorBlendStateCreateFlagBits" category="enum"/>
278 <type name="VkPipelineMultisampleStateCreateFlagBits" category="enum"/>
279 <type name="VkPipelineRasterizationStateCreateFlagBits" category="enum"/>
280 <type name="VkPipelineViewportStateCreateFlagBits" category="enum"/>
281 <type name="VkPipelineTessellationStateCreateFlagBits" category="enum"/>
282 <type name="VkPipelineInputAssemblyStateCreateFlagBits" category="enum"/>
283 <type name="VkPipelineVertexInputStateCreateFlagBits" category="enum"/>
284 <type name="VkPipelineShaderStageCreateFlagBits" category="enum"/>
285 <type name="VkDescriptorSetLayoutCreateFlagBits" category="enum"/>
286 <type name="VkBufferViewCreateFlagBits" category="enum"/>
287 <type name="VkInstanceCreateFlagBits" category="enum"/>
288 <type name="VkDeviceQueueCreateFlagBits" category="enum"/>
289 <type name="VkBufferCreateFlagBits" category="enum"/>
290 <type name="VkBufferUsageFlagBits" category="enum"/>
291 <type name="VkColorComponentFlagBits" category="enum"/>
292 <type name="VkComponentSwizzle" category="enum"/>
293 <type name="VkCommandPoolCreateFlagBits" category="enum"/>
294 <type name="VkCommandPoolResetFlagBits" category="enum"/>
295 <type name="VkCommandBufferResetFlagBits" category="enum"/>
296 <type name="VkCommandBufferLevel" category="enum"/>
297 <type name="VkCommandBufferUsageFlagBits" category="enum"/>
298 <type name="VkCompareOp" category="enum"/>
299 <type name="VkCullModeFlagBits" category="enum"/>
300 <type name="VkDescriptorType" category="enum"/>
301 <type name="VkDeviceCreateFlagBits" category="enum"/>
302 <type name="VkDynamicState" category="enum"/>
303 <type name="VkFenceCreateFlagBits" category="enum"/>
304 <type name="VkPolygonMode" category="enum"/>
305 <type name="VkFormat" category="enum"/>
306 <type name="VkFormatFeatureFlagBits" category="enum"/>
307 <type name="VkFrontFace" category="enum"/>
308 <type name="VkImageAspectFlagBits" category="enum"/>
309 <type name="VkImageCreateFlagBits" category="enum"/>
310 <type name="VkImageLayout" category="enum"/>
311 <type name="VkImageTiling" category="enum"/>
312 <type name="VkImageType" category="enum"/>
313 <type name="VkImageUsageFlagBits" category="enum"/>
314 <type name="VkImageViewType" category="enum"/>
315 <type name="VkSharingMode" category="enum"/>
316 <type name="VkIndexType" category="enum"/>
317 <type name="VkLogicOp" category="enum"/>
318 <type name="VkMemoryHeapFlagBits" category="enum"/>
319 <type name="VkAccessFlagBits" category="enum"/>
320 <type name="VkMemoryPropertyFlagBits" category="enum"/>
321 <type name="VkPhysicalDeviceType" category="enum"/>
322 <type name="VkPipelineBindPoint" category="enum"/>
323 <type name="VkPipelineCreateFlagBits" category="enum"/>
324 <type name="VkPrimitiveTopology" category="enum"/>
325 <type name="VkQueryControlFlagBits" category="enum"/>
326 <type name="VkQueryPipelineStatisticFlagBits" category="enum"/>
327 <type name="VkQueryResultFlagBits" category="enum"/>
328 <type name="VkQueryType" category="enum"/>
329 <type name="VkQueueFlagBits" category="enum"/>
330 <type name="VkSubpassContents" category="enum"/>
331 <type name="VkResult" category="enum"/>
332 <type name="VkShaderStageFlagBits" category="enum"/>
333 <type name="VkSparseMemoryBindFlagBits" category="enum"/>
334 <type name="VkStencilFaceFlagBits" category="enum"/>
335 <type name="VkStencilOp" category="enum"/>
336 <type name="VkStructureType" category="enum"/>
337 <type name="VkSystemAllocationScope" category="enum"/>
338 <type name="VkInternalAllocationType" category="enum"/>
339 <type name="VkSamplerAddressMode" category="enum"/>
340 <type name="VkFilter" category="enum"/>
341 <type name="VkSamplerMipmapMode" category="enum"/>
342 <type name="VkVertexInputRate" category="enum"/>
343 <type name="VkPipelineStageFlagBits" category="enum"/>
344 <type name="VkSparseImageFormatFlagBits" category="enum"/>
345 <type name="VkSampleCountFlagBits" category="enum"/>
346 <type name="VkAttachmentDescriptionFlagBits" category="enum"/>
347 <type name="VkDescriptorPoolCreateFlagBits" category="enum"/>
348 <type name="VkDependencyFlagBits" category="enum"/>
349 <type name="VkIndirectCommandsLayoutUsageFlagBitsNVX" category="enum"/>
350 <type name="VkIndirectCommandsTokenTypeNVX" category="enum"/>
351 <type name="VkObjectEntryUsageFlagBitsNVX" category="enum"/>
352 <type name="VkObjectEntryTypeNVX" category="enum"/>
353 <!-- WSI extensions -->
354 <type name="VkColorSpaceKHR" category="enum"/>
355 <type name="VkCompositeAlphaFlagBitsKHR" category="enum"/>
356 <type name="VkDisplayPlaneAlphaFlagBitsKHR" category="enum"/>
357 <type name="VkPresentModeKHR" category="enum"/>
358 <type name="VkSurfaceTransformFlagBitsKHR" category="enum"/>
359 <type name="VkDebugReportFlagBitsEXT" category="enum"/>
360 <type name="VkDebugReportObjectTypeEXT" category="enum"/>
361 <type name="VkDebugReportErrorEXT" category="enum"/>
362 <type name="VkRasterizationOrderAMD" category="enum"/>
363 <type name="VkExternalMemoryHandleTypeFlagBitsNV" category="enum"/>
364 <type name="VkExternalMemoryFeatureFlagBitsNV" category="enum"/>
365 <type name="VkValidationCheckEXT" category="enum"/>
366 <type name="VkSurfaceCounterFlagBitsEXT" category="enum"/>
367 <type name="VkDisplayPowerStateEXT" category="enum"/>
368 <type name="VkDeviceEventTypeEXT" category="enum"/>
369 <type name="VkDisplayEventTypeEXT" category="enum"/>
370
371 <!-- The PFN_vk*Function types are used by VkAllocationCallbacks below -->
372 <type category="funcpointer">typedef void (VKAPI_PTR *<name>PFN_vkInternalAllocationNotification</name>)(
373 <type>void</type>* pUserData,
374 <type>size_t</type> size,
375 <type>VkInternalAllocationType</type> allocationType,
376 <type>VkSystemAllocationScope</type> allocationScope);</type>
377 <type category="funcpointer">typedef void (VKAPI_PTR *<name>PFN_vkInternalFreeNotification</name>)(
378 <type>void</type>* pUserData,
379 <type>size_t</type> size,
380 <type>VkInternalAllocationType</type> allocationType,
381 <type>VkSystemAllocationScope</type> allocationScope);</type>
382 <type category="funcpointer">typedef void* (VKAPI_PTR *<name>PFN_vkReallocationFunction</name>)(
383 <type>void</type>* pUserData,
384 <type>void</type>* pOriginal,
385 <type>size_t</type> size,
386 <type>size_t</type> alignment,
387 <type>VkSystemAllocationScope</type> allocationScope);</type>
388 <type category="funcpointer">typedef void* (VKAPI_PTR *<name>PFN_vkAllocationFunction</name>)(
389 <type>void</type>* pUserData,
390 <type>size_t</type> size,
391 <type>size_t</type> alignment,
392 <type>VkSystemAllocationScope</type> allocationScope);</type>
393 <type category="funcpointer">typedef void (VKAPI_PTR *<name>PFN_vkFreeFunction</name>)(
394 <type>void</type>* pUserData,
395 <type>void</type>* pMemory);</type>
396
397 <!-- The PFN_vkVoidFunction type are used by VkGet*ProcAddr below -->
398 <type category="funcpointer">typedef void (VKAPI_PTR *<name>PFN_vkVoidFunction</name>)(void);</type>
399
400 <!-- The PFN_vkDebugReportCallbackEXT type are used by the DEBUG_REPORT extension-->
401 <type category="funcpointer">typedef VkBool32 (VKAPI_PTR *<name>PFN_vkDebugReportCallbackEXT</name>)(
402 <type>VkDebugReportFlagsEXT</type> flags,
403 <type>VkDebugReportObjectTypeEXT</type> objectType,
404 <type>uint64_t</type> object,
405 <type>size_t</type> location,
406 <type>int32_t</type> messageCode,
407 const <type>char</type>* pLayerPrefix,
408 const <type>char</type>* pMessage,
409 <type>void</type>* pUserData);</type>
410
411 <!-- Struct types -->
412 <type category="struct" name="VkOffset2D">
413 <member><type>int32_t</type> <name>x</name></member>
414 <member><type>int32_t</type> <name>y</name></member>
415 </type>
416 <type category="struct" name="VkOffset3D">
417 <member><type>int32_t</type> <name>x</name></member>
418 <member><type>int32_t</type> <name>y</name></member>
419 <member><type>int32_t</type> <name>z</name></member>
420 </type>
421 <type category="struct" name="VkExtent2D">
422 <member><type>uint32_t</type> <name>width</name></member>
423 <member><type>uint32_t</type> <name>height</name></member>
424 </type>
425 <type category="struct" name="VkExtent3D">
426 <member><type>uint32_t</type> <name>width</name></member>
427 <member><type>uint32_t</type> <name>height</name></member>
428 <member><type>uint32_t</type> <name>depth</name></member>
429 </type>
430 <type category="struct" name="VkViewport">
431 <member><type>float</type> <name>x</name></member>
432 <member><type>float</type> <name>y</name></member>
433 <member><type>float</type> <name>width</name></member>
434 <member><type>float</type> <name>height</name></member>
435 <member><type>float</type> <name>minDepth</name></member>
436 <member><type>float</type> <name>maxDepth</name></member>
437 </type>
438 <type category="struct" name="VkRect2D">
439 <member><type>VkOffset2D</type> <name>offset</name></member>
440 <member><type>VkExtent2D</type> <name>extent</name></member>
441 </type>
442 <type category="struct" name="VkRect3D">
443 <member><type>VkOffset3D</type> <name>offset</name></member>
444 <member><type>VkExtent3D</type> <name>extent</name></member>
445 </type>
446 <type category="struct" name="VkClearRect">
447 <member><type>VkRect2D</type> <name>rect</name></member>
448 <member><type>uint32_t</type> <name>baseArrayLayer</name></member>
449 <member><type>uint32_t</type> <name>layerCount</name></member>
450 </type>
451 <type category="struct" name="VkComponentMapping">
452 <member><type>VkComponentSwizzle</type> <name>r</name></member>
453 <member><type>VkComponentSwizzle</type> <name>g</name></member>
454 <member><type>VkComponentSwizzle</type> <name>b</name></member>
455 <member><type>VkComponentSwizzle</type> <name>a</name></member>
456 </type>
457 <type category="struct" name="VkPhysicalDeviceProperties" returnedonly="true">
458 <member><type>uint32_t</type> <name>apiVersion</name></member>
459 <member><type>uint32_t</type> <name>driverVersion</name></member>
460 <member><type>uint32_t</type> <name>vendorID</name></member>
461 <member><type>uint32_t</type> <name>deviceID</name></member>
462 <member><type>VkPhysicalDeviceType</type> <name>deviceType</name></member>
463 <member><type>char</type> <name>deviceName</name>[<enum>VK_MAX_PHYSICAL_DEVICE_NAME_SIZE</enum>]</member>
464 <member><type>uint8_t</type> <name>pipelineCacheUUID</name>[<enum>VK_UUID_SIZE</enum>]</member>
465 <member><type>VkPhysicalDeviceLimits</type> <name>limits</name></member>
466 <member><type>VkPhysicalDeviceSparseProperties</type> <name>sparseProperties</name></member>
467 </type>
468 <type category="struct" name="VkExtensionProperties" returnedonly="true">
469 <member><type>char</type> <name>extensionName</name>[<enum>VK_MAX_EXTENSION_NAME_SIZE</enum>]</member> <!-- extension name -->
470 <member><type>uint32_t</type> <name>specVersion</name></member> <!-- version of the extension specification implemented -->
471 </type>
472 <type category="struct" name="VkLayerProperties" returnedonly="true">
473 <member><type>char</type> <name>layerName</name>[<enum>VK_MAX_EXTENSION_NAME_SIZE</enum>]</member> <!-- layer name -->
474 <member><type>uint32_t</type> <name>specVersion</name></member> <!-- version of the layer specification implemented -->
475 <member><type>uint32_t</type> <name>implementationVersion</name></member> <!-- build or release version of the layer's library -->
476 <member><type>char</type> <name>description</name>[<enum>VK_MAX_DESCRIPTION_SIZE</enum>]</member> <!-- Free-form description of the layer -->
477 </type>
478 <type category="struct" name="VkApplicationInfo">
479 <member values="VK_STRUCTURE_TYPE_APPLICATION_INFO"><type>VkStructureType</type> <name>sType</name></member>
480 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
481 <member optional="true" len="null-terminated">const <type>char</type>* <name>pApplicationName</name></member>
482 <member><type>uint32_t</type> <name>applicationVersion</name></member>
483 <member optional="true" len="null-terminated">const <type>char</type>* <name>pEngineName</name></member>
484 <member><type>uint32_t</type> <name>engineVersion</name></member>
485 <member><type>uint32_t</type> <name>apiVersion</name></member>
486 </type>
487 <type category="struct" name="VkAllocationCallbacks">
488 <member optional="true"><type>void</type>* <name>pUserData</name></member>
489 <member><type>PFN_vkAllocationFunction</type> <name>pfnAllocation</name></member>
490 <member><type>PFN_vkReallocationFunction</type> <name>pfnReallocation</name></member>
491 <member><type>PFN_vkFreeFunction</type> <name>pfnFree</name></member>
492 <member optional="true"><type>PFN_vkInternalAllocationNotification</type> <name>pfnInternalAllocation</name></member>
493 <member optional="true"><type>PFN_vkInternalFreeNotification</type> <name>pfnInternalFree</name></member>
494 </type>
495 <type category="struct" name="VkDeviceQueueCreateInfo">
496 <member values="VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
497 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
498 <member optional="true"><type>VkDeviceQueueCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
499 <member><type>uint32_t</type> <name>queueFamilyIndex</name></member>
500 <member><type>uint32_t</type> <name>queueCount</name></member>
501 <member len="queueCount">const <type>float</type>* <name>pQueuePriorities</name></member>
502 </type>
503 <type category="struct" name="VkDeviceCreateInfo">
504 <member values="VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
505 <member validextensionstructs="VkPhysicalDeviceFeatures2KHR">const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
506 <member optional="true"><type>VkDeviceCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
507 <member><type>uint32_t</type> <name>queueCreateInfoCount</name></member>
508 <member len="queueCreateInfoCount">const <type>VkDeviceQueueCreateInfo</type>* <name>pQueueCreateInfos</name></member>
509 <member optional="true"><type>uint32_t</type> <name>enabledLayerCount</name></member>
510 <member len="enabledLayerCount,null-terminated">const <type>char</type>* const* <name>ppEnabledLayerNames</name></member> <!-- Ordered list of layer names to be enabled -->
511 <member optional="true"><type>uint32_t</type> <name>enabledExtensionCount</name></member>
512 <member len="enabledExtensionCount,null-terminated">const <type>char</type>* const* <name>ppEnabledExtensionNames</name></member>
513 <member optional="true">const <type>VkPhysicalDeviceFeatures</type>* <name>pEnabledFeatures</name></member>
514 </type>
515 <type category="struct" name="VkInstanceCreateInfo">
516 <member values="VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
517 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
518 <member optional="true"><type>VkInstanceCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
519 <member optional="true">const <type>VkApplicationInfo</type>* <name>pApplicationInfo</name></member>
520 <member optional="true"><type>uint32_t</type> <name>enabledLayerCount</name></member>
521 <member len="enabledLayerCount,null-terminated">const <type>char</type>* const* <name>ppEnabledLayerNames</name></member> <!-- Ordered list of layer names to be enabled -->
522 <member optional="true"><type>uint32_t</type> <name>enabledExtensionCount</name></member>
523 <member len="enabledExtensionCount,null-terminated">const <type>char</type>* const* <name>ppEnabledExtensionNames</name></member> <!-- Extension names to be enabled -->
524 </type>
525 <type category="struct" name="VkQueueFamilyProperties" returnedonly="true">
526 <member optional="true"><type>VkQueueFlags</type> <name>queueFlags</name></member> <!-- Queue flags -->
527 <member><type>uint32_t</type> <name>queueCount</name></member>
528 <member><type>uint32_t</type> <name>timestampValidBits</name></member>
529 <member><type>VkExtent3D</type> <name>minImageTransferGranularity</name></member> <!-- Minimum alignment requirement for image transfers -->
530 </type>
531 <type category="struct" name="VkPhysicalDeviceMemoryProperties" returnedonly="true">
532 <member><type>uint32_t</type> <name>memoryTypeCount</name></member>
533 <member><type>VkMemoryType</type> <name>memoryTypes</name>[<enum>VK_MAX_MEMORY_TYPES</enum>]</member>
534 <member><type>uint32_t</type> <name>memoryHeapCount</name></member>
535 <member><type>VkMemoryHeap</type> <name>memoryHeaps</name>[<enum>VK_MAX_MEMORY_HEAPS</enum>]</member>
536 </type>
537 <type category="struct" name="VkMemoryAllocateInfo">
538 <member values="VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
539 <member validextensionstructs="VkDedicatedAllocationMemoryAllocateInfoNV">const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
540 <member><type>VkDeviceSize</type> <name>allocationSize</name></member> <!-- Size of memory allocation -->
541 <member><type>uint32_t</type> <name>memoryTypeIndex</name></member> <!-- Index of the of the memory type to allocate from -->
542 </type>
543 <type category="struct" name="VkMemoryRequirements" returnedonly="true">
544 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Specified in bytes -->
545 <member><type>VkDeviceSize</type> <name>alignment</name></member> <!-- Specified in bytes -->
546 <member><type>uint32_t</type> <name>memoryTypeBits</name></member> <!-- Bitmask of the allowed memory type indices into memoryTypes[] for this object -->
547 </type>
548 <type category="struct" name="VkSparseImageFormatProperties" returnedonly="true">
549 <member optional="true"><type>VkImageAspectFlags</type> <name>aspectMask</name></member>
550 <member><type>VkExtent3D</type> <name>imageGranularity</name></member>
551 <member optional="true"><type>VkSparseImageFormatFlags</type> <name>flags</name></member>
552 </type>
553 <type category="struct" name="VkSparseImageMemoryRequirements" returnedonly="true">
554 <member><type>VkSparseImageFormatProperties</type> <name>formatProperties</name></member>
555 <member><type>uint32_t</type> <name>imageMipTailFirstLod</name></member>
556 <member><type>VkDeviceSize</type> <name>imageMipTailSize</name></member> <!-- Specified in bytes, must be a multiple of sparse block size in bytes / alignment -->
557 <member><type>VkDeviceSize</type> <name>imageMipTailOffset</name></member> <!-- Specified in bytes, must be a multiple of sparse block size in bytes / alignment -->
558 <member><type>VkDeviceSize</type> <name>imageMipTailStride</name></member> <!-- Specified in bytes, must be a multiple of sparse block size in bytes / alignment -->
559 </type>
560 <type category="struct" name="VkMemoryType" returnedonly="true">
561 <member optional="true"><type>VkMemoryPropertyFlags</type> <name>propertyFlags</name></member> <!-- Memory properties of this memory type -->
562 <member><type>uint32_t</type> <name>heapIndex</name></member> <!-- Index of the memory heap allocations of this memory type are taken from -->
563 </type>
564 <type category="struct" name="VkMemoryHeap" returnedonly="true">
565 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Available memory in the heap-->
566 <member optional="true"><type>VkMemoryHeapFlags</type> <name>flags</name></member> <!-- Flags for the heap-->
567 </type>
568 <type category="struct" name="VkMappedMemoryRange">
569 <member values="VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE"><type>VkStructureType</type> <name>sType</name></member>
570 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
571 <member><type>VkDeviceMemory</type> <name>memory</name></member> <!-- Mapped memory object -->
572 <member><type>VkDeviceSize</type> <name>offset</name></member> <!-- Offset within the memory object where the range starts -->
573 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Size of the range within the memory object -->
574 </type>
575 <type category="struct" name="VkFormatProperties" returnedonly="true">
576 <member optional="true"><type>VkFormatFeatureFlags</type> <name>linearTilingFeatures</name></member> <!-- Format features in case of linear tiling -->
577 <member optional="true"><type>VkFormatFeatureFlags</type> <name>optimalTilingFeatures</name></member> <!-- Format features in case of optimal tiling -->
578 <member optional="true"><type>VkFormatFeatureFlags</type> <name>bufferFeatures</name></member> <!-- Format features supported by buffers -->
579 </type>
580 <type category="struct" name="VkImageFormatProperties" returnedonly="true">
581 <member><type>VkExtent3D</type> <name>maxExtent</name></member> <!-- max image dimensions for this resource type -->
582 <member><type>uint32_t</type> <name>maxMipLevels</name></member> <!-- max number of mipmap levels for this resource type -->
583 <member><type>uint32_t</type> <name>maxArrayLayers</name></member> <!-- max array size for this resource type -->
584 <member optional="true"><type>VkSampleCountFlags</type> <name>sampleCounts</name></member> <!-- supported sample counts for this resource type -->
585 <member><type>VkDeviceSize</type> <name>maxResourceSize</name></member> <!-- max size (in bytes) of this resource type -->
586 </type>
587 <type category="struct" name="VkDescriptorBufferInfo">
588 <member><type>VkBuffer</type> <name>buffer</name></member> <!-- Buffer used for this descriptor slot when the descriptor is UNIFORM_BUFFER[_DYNAMIC] or STORAGE_BUFFER[_DYNAMIC]. VK_NULL_HANDLE otherwise. -->
589 <member><type>VkDeviceSize</type> <name>offset</name></member> <!-- Base offset from buffer start in bytes to update in the descriptor set. -->
590 <member><type>VkDeviceSize</type> <name>range</name></member> <!-- Size in bytes of the buffer resource for this descriptor update. -->
591 </type>
592 <type category="struct" name="VkDescriptorImageInfo">
593 <member noautovalidity="true"><type>VkSampler</type> <name>sampler</name></member> <!-- Sampler to write to the descriptor in case it is a SAMPLER or COMBINED_IMAGE_SAMPLER descriptor. Ignored otherwise. -->
594 <member noautovalidity="true"><type>VkImageView</type> <name>imageView</name></member> <!-- Image view to write to the descriptor in case it is a SAMPLED_IMAGE, STORAGE_IMAGE, COMBINED_IMAGE_SAMPLER, or INPUT_ATTACHMENT descriptor. Ignored otherwise. -->
595 <member noautovalidity="true"><type>VkImageLayout</type> <name>imageLayout</name></member> <!-- Layout the image is expected to be in when accessed using this descriptor (only used if imageView is not VK_NULL_HANDLE). -->
596 </type>
597 <type category="struct" name="VkWriteDescriptorSet">
598 <member values="VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET"><type>VkStructureType</type> <name>sType</name></member>
599 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
600 <member><type>VkDescriptorSet</type> <name>dstSet</name></member> <!-- Destination descriptor set -->
601 <member><type>uint32_t</type> <name>dstBinding</name></member> <!-- Binding within the destination descriptor set to write -->
602 <member><type>uint32_t</type> <name>dstArrayElement</name></member> <!-- Array element within the destination binding to write -->
603 <member><type>uint32_t</type> <name>descriptorCount</name></member> <!-- Number of descriptors to write (determines the size of the array pointed by pDescriptors) -->
604 <member><type>VkDescriptorType</type> <name>descriptorType</name></member> <!-- Descriptor type to write (determines which members of the array pointed by pDescriptors are going to be used) -->
605 <member noautovalidity="true" len="descriptorCount">const <type>VkDescriptorImageInfo</type>* <name>pImageInfo</name></member> <!-- Sampler, image view, and layout for SAMPLER, COMBINED_IMAGE_SAMPLER, {SAMPLED,STORAGE}_IMAGE, and INPUT_ATTACHMENT descriptor types. -->
606 <member noautovalidity="true" len="descriptorCount">const <type>VkDescriptorBufferInfo</type>* <name>pBufferInfo</name></member> <!-- Raw buffer, size, and offset for {UNIFORM,STORAGE}_BUFFER[_DYNAMIC] descriptor types. -->
607 <member noautovalidity="true" len="descriptorCount">const <type>VkBufferView</type>* <name>pTexelBufferView</name></member> <!-- Buffer view to write to the descriptor for {UNIFORM,STORAGE}_TEXEL_BUFFER descriptor types. -->
608 </type>
609 <type category="struct" name="VkCopyDescriptorSet">
610 <member values="VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET"><type>VkStructureType</type> <name>sType</name></member>
611 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
612 <member><type>VkDescriptorSet</type> <name>srcSet</name></member> <!-- Source descriptor set -->
613 <member><type>uint32_t</type> <name>srcBinding</name></member> <!-- Binding within the source descriptor set to copy from -->
614 <member><type>uint32_t</type> <name>srcArrayElement</name></member> <!-- Array element within the source binding to copy from -->
615 <member><type>VkDescriptorSet</type> <name>dstSet</name></member> <!-- Destination descriptor set -->
616 <member><type>uint32_t</type> <name>dstBinding</name></member> <!-- Binding within the destination descriptor set to copy to -->
617 <member><type>uint32_t</type> <name>dstArrayElement</name></member> <!-- Array element within the destination binding to copy to -->
618 <member><type>uint32_t</type> <name>descriptorCount</name></member> <!-- Number of descriptors to write (determines the size of the array pointed by pDescriptors) -->
619 </type>
620 <type category="struct" name="VkBufferCreateInfo">
621 <member values="VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
622 <member validextensionstructs="VkDedicatedAllocationBufferCreateInfoNV">const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
623 <member optional="true"><type>VkBufferCreateFlags</type> <name>flags</name></member> <!-- Buffer creation flags -->
624 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Specified in bytes -->
625 <member><type>VkBufferUsageFlags</type> <name>usage</name></member> <!-- Buffer usage flags -->
626 <member><type>VkSharingMode</type> <name>sharingMode</name></member>
627 <member optional="true"><type>uint32_t</type> <name>queueFamilyIndexCount</name></member>
628 <member noautovalidity="true" len="queueFamilyIndexCount">const <type>uint32_t</type>* <name>pQueueFamilyIndices</name></member>
629 </type>
630 <type category="struct" name="VkBufferViewCreateInfo">
631 <member values="VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
632 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
633 <member optional="true"><type>VkBufferViewCreateFlags</type><name>flags</name></member> <!-- Reserved -->
634 <member><type>VkBuffer</type> <name>buffer</name></member>
635 <member><type>VkFormat</type> <name>format</name></member> <!-- Optionally specifies format of elements -->
636 <member><type>VkDeviceSize</type> <name>offset</name></member> <!-- Specified in bytes -->
637 <member><type>VkDeviceSize</type> <name>range</name></member> <!-- View size specified in bytes -->
638 </type>
639 <type category="struct" name="VkImageSubresource">
640 <member><type>VkImageAspectFlags</type> <name>aspectMask</name></member>
641 <member><type>uint32_t</type> <name>mipLevel</name></member>
642 <member><type>uint32_t</type> <name>arrayLayer</name></member>
643 </type>
644 <type category="struct" name="VkImageSubresourceLayers">
645 <member><type>VkImageAspectFlags</type> <name>aspectMask</name></member>
646 <member><type>uint32_t</type> <name>mipLevel</name></member>
647 <member><type>uint32_t</type> <name>baseArrayLayer</name></member>
648 <member><type>uint32_t</type> <name>layerCount</name></member>
649 </type>
650 <type category="struct" name="VkImageSubresourceRange">
651 <member><type>VkImageAspectFlags</type> <name>aspectMask</name></member>
652 <member><type>uint32_t</type> <name>baseMipLevel</name></member>
653 <member><type>uint32_t</type> <name>levelCount</name></member>
654 <member><type>uint32_t</type> <name>baseArrayLayer</name></member>
655 <member><type>uint32_t</type> <name>layerCount</name></member>
656 </type>
657 <type category="struct" name="VkMemoryBarrier">
658 <member values="VK_STRUCTURE_TYPE_MEMORY_BARRIER"><type>VkStructureType</type> <name>sType</name></member>
659 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
660 <member optional="true"><type>VkAccessFlags</type> <name>srcAccessMask</name></member> <!-- Memory accesses from the source of the dependency to synchronize -->
661 <member optional="true"><type>VkAccessFlags</type> <name>dstAccessMask</name></member> <!-- Memory accesses from the destination of the dependency to synchronize -->
662 </type>
663 <type category="struct" name="VkBufferMemoryBarrier">
664 <member values="VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER"><type>VkStructureType</type> <name>sType</name></member>
665 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
666 <member optional="true"><type>VkAccessFlags</type> <name>srcAccessMask</name></member> <!-- Memory accesses from the source of the dependency to synchronize -->
667 <member optional="true"><type>VkAccessFlags</type> <name>dstAccessMask</name></member> <!-- Memory accesses from the destination of the dependency to synchronize -->
668 <member><type>uint32_t</type> <name>srcQueueFamilyIndex</name></member> <!-- Queue family to transition ownership from -->
669 <member><type>uint32_t</type> <name>dstQueueFamilyIndex</name></member> <!-- Queue family to transition ownership to -->
670 <member><type>VkBuffer</type> <name>buffer</name></member> <!-- Buffer to sync -->
671 <member><type>VkDeviceSize</type> <name>offset</name></member> <!-- Offset within the buffer to sync -->
672 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Amount of bytes to sync -->
673 </type>
674 <type category="struct" name="VkImageMemoryBarrier">
675 <member values="VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER"><type>VkStructureType</type> <name>sType</name></member>
676 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
677 <member optional="true"><type>VkAccessFlags</type> <name>srcAccessMask</name></member> <!-- Memory accesses from the source of the dependency to synchronize -->
678 <member optional="true"><type>VkAccessFlags</type> <name>dstAccessMask</name></member> <!-- Memory accesses from the destination of the dependency to synchronize -->
679 <member><type>VkImageLayout</type> <name>oldLayout</name></member> <!-- Current layout of the image -->
680 <member><type>VkImageLayout</type> <name>newLayout</name></member> <!-- New layout to transition the image to -->
681 <member><type>uint32_t</type> <name>srcQueueFamilyIndex</name></member> <!-- Queue family to transition ownership from -->
682 <member><type>uint32_t</type> <name>dstQueueFamilyIndex</name></member> <!-- Queue family to transition ownership to -->
683 <member><type>VkImage</type> <name>image</name></member> <!-- Image to sync -->
684 <member><type>VkImageSubresourceRange</type> <name>subresourceRange</name></member> <!-- Subresource range to sync -->
685 </type>
686 <type category="struct" name="VkImageCreateInfo">
687 <member values="VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
688 <member validextensionstructs="VkDedicatedAllocationImageCreateInfoNV">const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
689 <member optional="true"><type>VkImageCreateFlags</type> <name>flags</name></member> <!-- Image creation flags -->
690 <member><type>VkImageType</type> <name>imageType</name></member>
691 <member><type>VkFormat</type> <name>format</name></member>
692 <member><type>VkExtent3D</type> <name>extent</name></member>
693 <member><type>uint32_t</type> <name>mipLevels</name></member>
694 <member><type>uint32_t</type> <name>arrayLayers</name></member>
695 <member><type>VkSampleCountFlagBits</type> <name>samples</name></member>
696 <member><type>VkImageTiling</type> <name>tiling</name></member>
697 <member><type>VkImageUsageFlags</type> <name>usage</name></member> <!-- Image usage flags -->
698 <member><type>VkSharingMode</type> <name>sharingMode</name></member> <!-- Cross-queue-family sharing mode -->
699 <member optional="true"><type>uint32_t</type> <name>queueFamilyIndexCount</name></member> <!-- Number of queue families to share across -->
700 <member noautovalidity="true" len="queueFamilyIndexCount">const <type>uint32_t</type>* <name>pQueueFamilyIndices</name></member> <!-- Array of queue family indices to share across -->
701 <member><type>VkImageLayout</type> <name>initialLayout</name></member> <!-- Initial image layout for all subresources -->
702 </type>
703 <type category="struct" name="VkSubresourceLayout" returnedonly="true">
704 <member><type>VkDeviceSize</type> <name>offset</name></member> <!-- Specified in bytes -->
705 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Specified in bytes -->
706 <member><type>VkDeviceSize</type> <name>rowPitch</name></member> <!-- Specified in bytes -->
707 <member><type>VkDeviceSize</type> <name>arrayPitch</name></member> <!-- Specified in bytes -->
708 <member><type>VkDeviceSize</type> <name>depthPitch</name></member> <!-- Specified in bytes -->
709 </type>
710 <type category="struct" name="VkImageViewCreateInfo">
711 <member values="VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
712 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
713 <member optional="true"><type>VkImageViewCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
714 <member><type>VkImage</type> <name>image</name></member>
715 <member><type>VkImageViewType</type> <name>viewType</name></member>
716 <member><type>VkFormat</type> <name>format</name></member>
717 <member><type>VkComponentMapping</type> <name>components</name></member>
718 <member><type>VkImageSubresourceRange</type> <name>subresourceRange</name></member>
719 </type>
720 <type category="struct" name="VkBufferCopy">
721 <member><type>VkDeviceSize</type> <name>srcOffset</name></member> <!-- Specified in bytes -->
722 <member><type>VkDeviceSize</type> <name>dstOffset</name></member> <!-- Specified in bytes -->
723 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Specified in bytes -->
724 </type>
725 <type category="struct" name="VkSparseMemoryBind">
726 <member><type>VkDeviceSize</type> <name>resourceOffset</name></member> <!-- Specified in bytes -->
727 <member><type>VkDeviceSize</type> <name>size</name></member> <!-- Specified in bytes -->
728 <member optional="true"><type>VkDeviceMemory</type> <name>memory</name></member>
729 <member><type>VkDeviceSize</type> <name>memoryOffset</name></member> <!-- Specified in bytes -->
730 <member optional="true"><type>VkSparseMemoryBindFlags</type><name>flags</name></member> <!-- Reserved for future -->
731 </type>
732 <type category="struct" name="VkSparseImageMemoryBind">
733 <member><type>VkImageSubresource</type> <name>subresource</name></member>
734 <member><type>VkOffset3D</type> <name>offset</name></member>
735 <member><type>VkExtent3D</type> <name>extent</name></member>
736 <member optional="true"><type>VkDeviceMemory</type> <name>memory</name></member>
737 <member><type>VkDeviceSize</type> <name>memoryOffset</name></member> <!-- Specified in bytes -->
738 <member optional="true"><type>VkSparseMemoryBindFlags</type><name>flags</name></member> <!-- Reserved for future -->
739 </type>
740 <type category="struct" name="VkSparseBufferMemoryBindInfo">
741 <member><type>VkBuffer</type> <name>buffer</name></member>
742 <member><type>uint32_t</type> <name>bindCount</name></member>
743 <member len="bindCount">const <type>VkSparseMemoryBind</type>* <name>pBinds</name></member>
744 </type>
745 <type category="struct" name="VkSparseImageOpaqueMemoryBindInfo">
746 <member><type>VkImage</type> <name>image</name></member>
747 <member><type>uint32_t</type> <name>bindCount</name></member>
748 <member len="bindCount">const <type>VkSparseMemoryBind</type>* <name>pBinds</name></member>
749 </type>
750 <type category="struct" name="VkSparseImageMemoryBindInfo">
751 <member><type>VkImage</type> <name>image</name></member>
752 <member><type>uint32_t</type> <name>bindCount</name></member>
753 <member len="bindCount">const <type>VkSparseImageMemoryBind</type>* <name>pBinds</name></member>
754 </type>
755 <type category="struct" name="VkBindSparseInfo">
756 <member values="VK_STRUCTURE_TYPE_BIND_SPARSE_INFO"><type>VkStructureType</type> <name>sType</name></member>
757 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure. -->
758 <member optional="true"><type>uint32_t</type> <name>waitSemaphoreCount</name></member>
759 <member len="waitSemaphoreCount">const <type>VkSemaphore</type>* <name>pWaitSemaphores</name></member>
760 <member optional="true"><type>uint32_t</type> <name>bufferBindCount</name></member>
761 <member len="bufferBindCount">const <type>VkSparseBufferMemoryBindInfo</type>* <name>pBufferBinds</name></member>
762 <member optional="true"><type>uint32_t</type> <name>imageOpaqueBindCount</name></member>
763 <member len="imageOpaqueBindCount">const <type>VkSparseImageOpaqueMemoryBindInfo</type>* <name>pImageOpaqueBinds</name></member>
764 <member optional="true"><type>uint32_t</type> <name>imageBindCount</name></member>
765 <member len="imageBindCount">const <type>VkSparseImageMemoryBindInfo</type>* <name>pImageBinds</name></member>
766 <member optional="true"><type>uint32_t</type> <name>signalSemaphoreCount</name></member>
767 <member len="signalSemaphoreCount">const <type>VkSemaphore</type>* <name>pSignalSemaphores</name></member>
768 </type>
769 <type category="struct" name="VkImageCopy">
770 <member><type>VkImageSubresourceLayers</type> <name>srcSubresource</name></member>
771 <member><type>VkOffset3D</type> <name>srcOffset</name></member> <!-- Specified in pixels for both compressed and uncompressed images -->
772 <member><type>VkImageSubresourceLayers</type> <name>dstSubresource</name></member>
773 <member><type>VkOffset3D</type> <name>dstOffset</name></member> <!-- Specified in pixels for both compressed and uncompressed images -->
774 <member><type>VkExtent3D</type> <name>extent</name></member> <!-- Specified in pixels for both compressed and uncompressed images -->
775 </type>
776 <type category="struct" name="VkImageBlit">
777 <member><type>VkImageSubresourceLayers</type> <name>srcSubresource</name></member>
778 <member><type>VkOffset3D</type> <name>srcOffsets</name>[2]</member> <!-- Specified in pixels for both compressed and uncompressed images -->
779 <member><type>VkImageSubresourceLayers</type> <name>dstSubresource</name></member>
780 <member><type>VkOffset3D</type> <name>dstOffsets</name>[2]</member> <!-- Specified in pixels for both compressed and uncompressed images -->
781 </type>
782 <type category="struct" name="VkBufferImageCopy">
783 <member><type>VkDeviceSize</type> <name>bufferOffset</name></member> <!-- Specified in bytes -->
784 <member><type>uint32_t</type> <name>bufferRowLength</name></member> <!-- Specified in texels -->
785 <member><type>uint32_t</type> <name>bufferImageHeight</name></member>
786 <member><type>VkImageSubresourceLayers</type> <name>imageSubresource</name></member>
787 <member><type>VkOffset3D</type> <name>imageOffset</name></member> <!-- Specified in pixels for both compressed and uncompressed images -->
788 <member><type>VkExtent3D</type> <name>imageExtent</name></member> <!-- Specified in pixels for both compressed and uncompressed images -->
789 </type>
790 <type category="struct" name="VkImageResolve">
791 <member><type>VkImageSubresourceLayers</type> <name>srcSubresource</name></member>
792 <member><type>VkOffset3D</type> <name>srcOffset</name></member>
793 <member><type>VkImageSubresourceLayers</type> <name>dstSubresource</name></member>
794 <member><type>VkOffset3D</type> <name>dstOffset</name></member>
795 <member><type>VkExtent3D</type> <name>extent</name></member>
796 </type>
797 <type category="struct" name="VkShaderModuleCreateInfo">
798 <member values="VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
799 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
800 <member optional="true"><type>VkShaderModuleCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
801 <member><type>size_t</type> <name>codeSize</name></member> <!-- Specified in bytes -->
802 <member len="latexmath:[$codeSize \over 4$]">const <type>uint32_t</type>* <name>pCode</name></member> <!-- Binary code of size codeSize -->
803 </type>
804 <type category="struct" name="VkDescriptorSetLayoutBinding">
805 <member><type>uint32_t</type> <name>binding</name></member> <!-- Binding number for this entry -->
806 <member><type>VkDescriptorType</type> <name>descriptorType</name></member> <!-- Type of the descriptors in this binding -->
807 <member optional="true"><type>uint32_t</type> <name>descriptorCount</name></member> <!-- Number of descriptors in this binding -->
808 <member noautovalidity="true"><type>VkShaderStageFlags</type> <name>stageFlags</name></member> <!-- Shader stages this binding is visible to -->
809 <member noautovalidity="true" optional="true" len="descriptorCount">const <type>VkSampler</type>* <name>pImmutableSamplers</name></member> <!-- Immutable samplers (used if descriptor type is SAMPLER or COMBINED_IMAGE_SAMPLER, is either NULL or contains count number of elements) -->
810 </type>
811 <type category="struct" name="VkDescriptorSetLayoutCreateInfo">
812 <member values="VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
813 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
814 <member optional="true"><type>VkDescriptorSetLayoutCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
815 <member optional="true"><type>uint32_t</type> <name>bindingCount</name></member> <!-- Number of bindings in the descriptor set layout -->
816 <member len="bindingCount">const <type>VkDescriptorSetLayoutBinding</type>* <name>pBindings</name></member> <!-- Array of descriptor set layout bindings -->
817 </type>
818 <type category="struct" name="VkDescriptorPoolSize">
819 <member><type>VkDescriptorType</type> <name>type</name></member>
820 <member><type>uint32_t</type> <name>descriptorCount</name></member>
821 </type>
822 <type category="struct" name="VkDescriptorPoolCreateInfo">
823 <member values="VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
824 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
825 <member optional="true"><type>VkDescriptorPoolCreateFlags</type> <name>flags</name></member>
826 <member><type>uint32_t</type> <name>maxSets</name></member>
827 <member><type>uint32_t</type> <name>poolSizeCount</name></member>
828 <member len="poolSizeCount">const <type>VkDescriptorPoolSize</type>* <name>pPoolSizes</name></member>
829 </type>
830 <type category="struct" name="VkDescriptorSetAllocateInfo">
831 <member values="VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
832 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
833 <member><type>VkDescriptorPool</type> <name>descriptorPool</name></member>
834 <member><type>uint32_t</type> <name>descriptorSetCount</name></member>
835 <member len="descriptorSetCount">const <type>VkDescriptorSetLayout</type>* <name>pSetLayouts</name></member>
836 </type>
837 <type category="struct" name="VkSpecializationMapEntry">
838 <member><type>uint32_t</type> <name>constantID</name></member> <!-- The SpecConstant ID specified in the BIL -->
839 <member><type>uint32_t</type> <name>offset</name></member> <!-- Offset of the value in the data block -->
840 <member><type>size_t</type> <name>size</name></member> <!-- Size in bytes of the SpecConstant -->
841 </type>
842 <type category="struct" name="VkSpecializationInfo">
843 <member optional="true"><type>uint32_t</type> <name>mapEntryCount</name></member> <!-- Number of entries in the map -->
844 <member len="mapEntryCount" noautovalidity="true">const <type>VkSpecializationMapEntry</type>* <name>pMapEntries</name></member> <!-- Array of map entries -->
845 <member optional="true"><type>size_t</type> <name>dataSize</name></member> <!-- Size in bytes of pData -->
846 <member len="dataSize">const <type>void</type>* <name>pData</name></member> <!-- Pointer to SpecConstant data -->
847 </type>
848 <type category="struct" name="VkPipelineShaderStageCreateInfo">
849 <member values="VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
850 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
851 <member optional="true"><type>VkPipelineShaderStageCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
852 <member><type>VkShaderStageFlagBits</type> <name>stage</name></member> <!-- Shader stage -->
853 <member><type>VkShaderModule</type> <name>module</name></member> <!-- Module containing entry point -->
854 <member len="null-terminated">const <type>char</type>* <name>pName</name></member> <!-- Null-terminated entry point name -->
855 <member optional="true">const <type>VkSpecializationInfo</type>* <name>pSpecializationInfo</name></member>
856 </type>
857 <type category="struct" name="VkComputePipelineCreateInfo">
858 <member values="VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
859 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
860 <member optional="true"><type>VkPipelineCreateFlags</type> <name>flags</name></member> <!-- Pipeline creation flags -->
861 <member><type>VkPipelineShaderStageCreateInfo</type> <name>stage</name></member>
862 <member><type>VkPipelineLayout</type> <name>layout</name></member> <!-- Interface layout of the pipeline -->
863 <member noautovalidity="true" optional="true"><type>VkPipeline</type> <name>basePipelineHandle</name></member> <!-- If VK_PIPELINE_CREATE_DERIVATIVE_BIT is set and this value is nonzero, it specifies the handle of the base pipeline this is a derivative of -->
864 <member><type>int32_t</type> <name>basePipelineIndex</name></member> <!-- If VK_PIPELINE_CREATE_DERIVATIVE_BIT is set and this value is not -1, it specifies an index into pCreateInfos of the base pipeline this is a derivative of -->
865 </type>
866 <type category="struct" name="VkVertexInputBindingDescription">
867 <member><type>uint32_t</type> <name>binding</name></member> <!-- Vertex buffer binding id -->
868 <member><type>uint32_t</type> <name>stride</name></member> <!-- Distance between vertices in bytes (0 = no advancement) -->
869 <member><type>VkVertexInputRate</type> <name>inputRate</name></member> <!-- The rate at which the vertex data is consumed -->
870 </type>
871 <type category="struct" name="VkVertexInputAttributeDescription">
872 <member><type>uint32_t</type> <name>location</name></member> <!-- location of the shader vertex attrib -->
873 <member><type>uint32_t</type> <name>binding</name></member> <!-- Vertex buffer binding id -->
874 <member><type>VkFormat</type> <name>format</name></member> <!-- format of source data -->
875 <member><type>uint32_t</type> <name>offset</name></member> <!-- Offset of first element in bytes from base of vertex -->
876 </type>
877 <type category="struct" name="VkPipelineVertexInputStateCreateInfo">
878 <member values="VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
879 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
880 <member optional="true"><type>VkPipelineVertexInputStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
881 <member optional="true"><type>uint32_t</type> <name>vertexBindingDescriptionCount</name></member> <!-- number of bindings -->
882 <member len="vertexBindingDescriptionCount">const <type>VkVertexInputBindingDescription</type>* <name>pVertexBindingDescriptions</name></member>
883 <member optional="true"><type>uint32_t</type> <name>vertexAttributeDescriptionCount</name></member> <!-- number of attributes -->
884 <member len="vertexAttributeDescriptionCount">const <type>VkVertexInputAttributeDescription</type>* <name>pVertexAttributeDescriptions</name></member>
885 </type>
886 <type category="struct" name="VkPipelineInputAssemblyStateCreateInfo">
887 <member values="VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
888 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
889 <member optional="true"><type>VkPipelineInputAssemblyStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
890 <member><type>VkPrimitiveTopology</type> <name>topology</name></member>
891 <member><type>VkBool32</type> <name>primitiveRestartEnable</name></member>
892 </type>
893 <type category="struct" name="VkPipelineTessellationStateCreateInfo">
894 <member values="VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
895 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
896 <member optional="true"><type>VkPipelineTessellationStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
897 <member><type>uint32_t</type> <name>patchControlPoints</name></member>
898 </type>
899 <type category="struct" name="VkPipelineViewportStateCreateInfo">
900 <member values="VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
901 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
902 <member optional="true"><type>VkPipelineViewportStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
903 <member><type>uint32_t</type> <name>viewportCount</name></member>
904 <member noautovalidity="true" optional="true" len="viewportCount">const <type>VkViewport</type>* <name>pViewports</name></member>
905 <member><type>uint32_t</type> <name>scissorCount</name></member>
906 <member noautovalidity="true" optional="true" len="scissorCount">const <type>VkRect2D</type>* <name>pScissors</name></member>
907 </type>
908 <type category="struct" name="VkPipelineRasterizationStateCreateInfo">
909 <member values="VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
910 <member validextensionstructs="VkPipelineRasterizationStateRasterizationOrderAMD">const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
911 <member optional="true"><type>VkPipelineRasterizationStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
912 <member><type>VkBool32</type> <name>depthClampEnable</name></member>
913 <member><type>VkBool32</type> <name>rasterizerDiscardEnable</name></member>
914 <member><type>VkPolygonMode</type> <name>polygonMode</name></member> <!-- optional (GL45) -->
915 <member optional="true"><type>VkCullModeFlags</type> <name>cullMode</name></member>
916 <member><type>VkFrontFace</type> <name>frontFace</name></member>
917 <member><type>VkBool32</type> <name>depthBiasEnable</name></member>
918 <member><type>float</type> <name>depthBiasConstantFactor</name></member>
919 <member><type>float</type> <name>depthBiasClamp</name></member>
920 <member><type>float</type> <name>depthBiasSlopeFactor</name></member>
921 <member><type>float</type> <name>lineWidth</name></member>
922 </type>
923 <type category="struct" name="VkPipelineMultisampleStateCreateInfo">
924 <member values="VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
925 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
926 <member optional="true"><type>VkPipelineMultisampleStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
927 <member><type>VkSampleCountFlagBits</type> <name>rasterizationSamples</name></member> <!-- Number of samples used for rasterization -->
928 <member><type>VkBool32</type> <name>sampleShadingEnable</name></member> <!-- optional (GL45) -->
929 <member><type>float</type> <name>minSampleShading</name></member> <!-- optional (GL45) -->
930 <member optional="true" len="latexmath:[$\lceil{\mathit{rasterizationSamples} \over 32}\rceil$]">const <type>VkSampleMask</type>* <name>pSampleMask</name></member> <!-- Array of sampleMask words -->
931 <member><type>VkBool32</type> <name>alphaToCoverageEnable</name></member>
932 <member><type>VkBool32</type> <name>alphaToOneEnable</name></member>
933 </type>
934 <type category="struct" name="VkPipelineColorBlendAttachmentState">
935 <member><type>VkBool32</type> <name>blendEnable</name></member>
936 <member><type>VkBlendFactor</type> <name>srcColorBlendFactor</name></member>
937 <member><type>VkBlendFactor</type> <name>dstColorBlendFactor</name></member>
938 <member><type>VkBlendOp</type> <name>colorBlendOp</name></member>
939 <member><type>VkBlendFactor</type> <name>srcAlphaBlendFactor</name></member>
940 <member><type>VkBlendFactor</type> <name>dstAlphaBlendFactor</name></member>
941 <member><type>VkBlendOp</type> <name>alphaBlendOp</name></member>
942 <member optional="true"><type>VkColorComponentFlags</type> <name>colorWriteMask</name></member>
943 </type>
944 <type category="struct" name="VkPipelineColorBlendStateCreateInfo">
945 <member values="VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
946 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
947 <member optional="true"><type>VkPipelineColorBlendStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
948 <member><type>VkBool32</type> <name>logicOpEnable</name></member>
949 <member noautovalidity="true"><type>VkLogicOp</type> <name>logicOp</name></member>
950 <member optional="true"><type>uint32_t</type> <name>attachmentCount</name></member> <!-- # of pAttachments -->
951 <member len="attachmentCount">const <type>VkPipelineColorBlendAttachmentState</type>* <name>pAttachments</name></member>
952 <member><type>float</type> <name>blendConstants</name>[4]</member>
953 </type>
954 <type category="struct" name="VkPipelineDynamicStateCreateInfo">
955 <member values="VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
956 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
957 <member optional="true"><type>VkPipelineDynamicStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
958 <member><type>uint32_t</type> <name>dynamicStateCount</name></member>
959 <member len="dynamicStateCount">const <type>VkDynamicState</type>* <name>pDynamicStates</name></member>
960 </type>
961 <type category="struct" name="VkStencilOpState">
962 <member><type>VkStencilOp</type> <name>failOp</name></member>
963 <member><type>VkStencilOp</type> <name>passOp</name></member>
964 <member><type>VkStencilOp</type> <name>depthFailOp</name></member>
965 <member><type>VkCompareOp</type> <name>compareOp</name></member>
966 <member><type>uint32_t</type> <name>compareMask</name></member>
967 <member><type>uint32_t</type> <name>writeMask</name></member>
968 <member><type>uint32_t</type> <name>reference</name></member>
969 </type>
970 <type category="struct" name="VkPipelineDepthStencilStateCreateInfo">
971 <member values="VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
972 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
973 <member optional="true"><type>VkPipelineDepthStencilStateCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
974 <member><type>VkBool32</type> <name>depthTestEnable</name></member>
975 <member><type>VkBool32</type> <name>depthWriteEnable</name></member>
976 <member><type>VkCompareOp</type> <name>depthCompareOp</name></member>
977 <member><type>VkBool32</type> <name>depthBoundsTestEnable</name></member> <!-- optional (depth_bounds_test) -->
978 <member><type>VkBool32</type> <name>stencilTestEnable</name></member>
979 <member><type>VkStencilOpState</type> <name>front</name></member>
980 <member><type>VkStencilOpState</type> <name>back</name></member>
981 <member><type>float</type> <name>minDepthBounds</name></member>
982 <member><type>float</type> <name>maxDepthBounds</name></member>
983 </type>
984 <type category="struct" name="VkGraphicsPipelineCreateInfo">
985 <member values="VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
986 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
987 <member optional="true"><type>VkPipelineCreateFlags</type> <name>flags</name></member> <!-- Pipeline creation flags -->
988 <member><type>uint32_t</type> <name>stageCount</name></member>
989 <member len="stageCount">const <type>VkPipelineShaderStageCreateInfo</type>* <name>pStages</name></member> <!-- One entry for each active shader stage -->
990 <member>const <type>VkPipelineVertexInputStateCreateInfo</type>* <name>pVertexInputState</name></member>
991 <member>const <type>VkPipelineInputAssemblyStateCreateInfo</type>* <name>pInputAssemblyState</name></member>
992 <member noautovalidity="true" optional="true">const <type>VkPipelineTessellationStateCreateInfo</type>* <name>pTessellationState</name></member>
993 <member noautovalidity="true" optional="true">const <type>VkPipelineViewportStateCreateInfo</type>* <name>pViewportState</name></member>
994 <member>const <type>VkPipelineRasterizationStateCreateInfo</type>* <name>pRasterizationState</name></member>
995 <member noautovalidity="true" optional="true">const <type>VkPipelineMultisampleStateCreateInfo</type>* <name>pMultisampleState</name></member>
996 <member noautovalidity="true" optional="true">const <type>VkPipelineDepthStencilStateCreateInfo</type>* <name>pDepthStencilState</name></member>
997 <member noautovalidity="true" optional="true">const <type>VkPipelineColorBlendStateCreateInfo</type>* <name>pColorBlendState</name></member>
998 <member optional="true">const <type>VkPipelineDynamicStateCreateInfo</type>* <name>pDynamicState</name></member>
999 <member><type>VkPipelineLayout</type> <name>layout</name></member> <!-- Interface layout of the pipeline -->
1000 <member><type>VkRenderPass</type> <name>renderPass</name></member>
1001 <member><type>uint32_t</type> <name>subpass</name></member>
1002 <member noautovalidity="true" optional="true"><type>VkPipeline</type> <name>basePipelineHandle</name></member> <!-- If VK_PIPELINE_CREATE_DERIVATIVE_BIT is set and this value is nonzero, it specifies the handle of the base pipeline this is a derivative of -->
1003 <member><type>int32_t</type> <name>basePipelineIndex</name></member> <!-- If VK_PIPELINE_CREATE_DERIVATIVE_BIT is set and this value is not -1, it specifies an index into pCreateInfos of the base pipeline this is a derivative of -->
1004 </type>
1005 <type category="struct" name="VkPipelineCacheCreateInfo">
1006 <member values="VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1007 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1008 <member optional="true"><type>VkPipelineCacheCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
1009 <member optional="true"><type>size_t</type> <name>initialDataSize</name></member> <!-- Size of initial data to populate cache, in bytes -->
1010 <member len="initialDataSize">const <type>void</type>* <name>pInitialData</name></member> <!-- Initial data to populate cache -->
1011 </type>
1012 <type category="struct" name="VkPushConstantRange">
1013 <member><type>VkShaderStageFlags</type> <name>stageFlags</name></member> <!-- Which stages use the range -->
1014 <member><type>uint32_t</type> <name>offset</name></member> <!-- Start of the range, in bytes -->
1015 <member><type>uint32_t</type> <name>size</name></member> <!-- Size of the range, in bytes -->
1016 </type>
1017 <type category="struct" name="VkPipelineLayoutCreateInfo">
1018 <member values="VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1019 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1020 <member optional="true"><type>VkPipelineLayoutCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
1021 <member optional="true"><type>uint32_t</type> <name>setLayoutCount</name></member> <!-- Number of descriptor sets interfaced by the pipeline -->
1022 <member len="setLayoutCount">const <type>VkDescriptorSetLayout</type>* <name>pSetLayouts</name></member> <!-- Array of setCount number of descriptor set layout objects defining the layout of the -->
1023 <member optional="true"><type>uint32_t</type> <name>pushConstantRangeCount</name></member> <!-- Number of push-constant ranges used by the pipeline -->
1024 <member len="pushConstantRangeCount">const <type>VkPushConstantRange</type>* <name>pPushConstantRanges</name></member> <!-- Array of pushConstantRangeCount number of ranges used by various shader stages -->
1025 </type>
1026 <type category="struct" name="VkSamplerCreateInfo">
1027 <member values="VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1028 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1029 <member optional="true"><type>VkSamplerCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
1030 <member><type>VkFilter</type> <name>magFilter</name></member> <!-- Filter mode for magnification -->
1031 <member><type>VkFilter</type> <name>minFilter</name></member> <!-- Filter mode for minifiation -->
1032 <member><type>VkSamplerMipmapMode</type> <name>mipmapMode</name></member> <!-- Mipmap selection mode -->
1033 <member><type>VkSamplerAddressMode</type> <name>addressModeU</name></member>
1034 <member><type>VkSamplerAddressMode</type> <name>addressModeV</name></member>
1035 <member><type>VkSamplerAddressMode</type> <name>addressModeW</name></member>
1036 <member><type>float</type> <name>mipLodBias</name></member>
1037 <member><type>VkBool32</type> <name>anisotropyEnable</name></member>
1038 <member><type>float</type> <name>maxAnisotropy</name></member>
1039 <member><type>VkBool32</type> <name>compareEnable</name></member>
1040 <member noautovalidity="true"><type>VkCompareOp</type> <name>compareOp</name></member>
1041 <member><type>float</type> <name>minLod</name></member>
1042 <member><type>float</type> <name>maxLod</name></member>
1043 <member noautovalidity="true"><type>VkBorderColor</type> <name>borderColor</name></member>
1044 <member><type>VkBool32</type> <name>unnormalizedCoordinates</name></member>
1045 </type>
1046 <type category="struct" name="VkCommandPoolCreateInfo">
1047 <member values="VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1048 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1049 <member optional="true"><type>VkCommandPoolCreateFlags</type> <name>flags</name></member> <!-- Command pool creation flags -->
1050 <member><type>uint32_t</type> <name>queueFamilyIndex</name></member>
1051 </type>
1052 <type category="struct" name="VkCommandBufferAllocateInfo">
1053 <member values="VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1054 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1055 <member><type>VkCommandPool</type> <name>commandPool</name></member>
1056 <member><type>VkCommandBufferLevel</type> <name>level</name></member>
1057 <member><type>uint32_t</type> <name>commandBufferCount</name></member>
1058 </type>
1059 <type category="struct" name="VkCommandBufferInheritanceInfo">
1060 <member values="VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1061 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1062 <member optional="true" noautovalidity="true"><type>VkRenderPass</type> <name>renderPass</name></member> <!-- Render pass for secondary command buffers -->
1063 <member><type>uint32_t</type> <name>subpass</name></member>
1064 <member optional="true" noautovalidity="true"><type>VkFramebuffer</type> <name>framebuffer</name></member> <!-- Framebuffer for secondary command buffers -->
1065 <member><type>VkBool32</type> <name>occlusionQueryEnable</name></member> <!-- Whether this secondary command buffer may be executed during an occlusion query -->
1066 <member optional="true" noautovalidity="true"><type>VkQueryControlFlags</type> <name>queryFlags</name></member> <!-- Query flags used by this secondary command buffer, if executed during an occlusion query -->
1067 <member optional="true" noautovalidity="true"><type>VkQueryPipelineStatisticFlags</type> <name>pipelineStatistics</name></member> <!-- Pipeline statistics that may be counted for this secondary command buffer -->
1068 </type>
1069 <type category="struct" name="VkCommandBufferBeginInfo">
1070 <member values="VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO"><type>VkStructureType</type> <name>sType</name></member>
1071 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1072 <member optional="true"><type>VkCommandBufferUsageFlags</type> <name>flags</name></member> <!-- Command buffer usage flags -->
1073 <member optional="true" noautovalidity="true">const <type>VkCommandBufferInheritanceInfo</type>* <name>pInheritanceInfo</name></member> <!-- Pointer to inheritance info for secondary command buffers -->
1074 </type>
1075 <type category="struct" name="VkRenderPassBeginInfo">
1076 <member values="VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO"><type>VkStructureType</type> <name>sType</name></member>
1077 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1078 <member><type>VkRenderPass</type> <name>renderPass</name></member>
1079 <member><type>VkFramebuffer</type> <name>framebuffer</name></member>
1080 <member><type>VkRect2D</type> <name>renderArea</name></member>
1081 <member optional="true"><type>uint32_t</type> <name>clearValueCount</name></member>
1082 <member len="clearValueCount" noautovalidity="true">const <type>VkClearValue</type>* <name>pClearValues</name></member>
1083 </type>
1084 <type category="union" name="VkClearColorValue" comment="// Union allowing specification of floating point, integer, or unsigned integer color data. Actual value selected is based on image/attachment being cleared.">
1085 <member><type>float</type> <name>float32</name>[4]</member>
1086 <member><type>int32_t</type> <name>int32</name>[4]</member>
1087 <member><type>uint32_t</type> <name>uint32</name>[4]</member>
1088 </type>
1089 <type category="struct" name="VkClearDepthStencilValue">
1090 <member><type>float</type> <name>depth</name></member>
1091 <member><type>uint32_t</type> <name>stencil</name></member>
1092 </type>
1093 <type category="union" name="VkClearValue" comment="// Union allowing specification of color or depth and stencil values. Actual value selected is based on attachment being cleared.">
1094 <member><type>VkClearColorValue</type> <name>color</name></member>
1095 <member><type>VkClearDepthStencilValue</type> <name>depthStencil</name></member>
1096 </type>
1097 <type category="struct" name="VkClearAttachment">
1098 <member><type>VkImageAspectFlags</type> <name>aspectMask</name></member>
1099 <member><type>uint32_t</type> <name>colorAttachment</name></member>
1100 <member><type>VkClearValue</type> <name>clearValue</name></member>
1101 </type>
1102 <type category="struct" name="VkAttachmentDescription">
1103 <member optional="true"><type>VkAttachmentDescriptionFlags</type> <name>flags</name></member>
1104 <member><type>VkFormat</type> <name>format</name></member>
1105 <member><type>VkSampleCountFlagBits</type> <name>samples</name></member>
1106 <member><type>VkAttachmentLoadOp</type> <name>loadOp</name></member> <!-- Load operation for color or depth data -->
1107 <member><type>VkAttachmentStoreOp</type> <name>storeOp</name></member> <!-- Store operation for color or depth data -->
1108 <member><type>VkAttachmentLoadOp</type> <name>stencilLoadOp</name></member> <!-- Load operation for stencil data -->
1109 <member><type>VkAttachmentStoreOp</type> <name>stencilStoreOp</name></member> <!-- Store operation for stencil data -->
1110 <member><type>VkImageLayout</type> <name>initialLayout</name></member>
1111 <member><type>VkImageLayout</type> <name>finalLayout</name></member>
1112 </type>
1113 <type category="struct" name="VkAttachmentReference">
1114 <member><type>uint32_t</type> <name>attachment</name></member>
1115 <member><type>VkImageLayout</type> <name>layout</name></member>
1116 </type>
1117 <type category="struct" name="VkSubpassDescription">
1118 <member optional="true"><type>VkSubpassDescriptionFlags</type> <name>flags</name></member>
1119 <member><type>VkPipelineBindPoint</type> <name>pipelineBindPoint</name></member> <!-- Must be VK_PIPELINE_BIND_POINT_GRAPHICS for now -->
1120 <member optional="true"><type>uint32_t</type> <name>inputAttachmentCount</name></member>
1121 <member len="inputAttachmentCount">const <type>VkAttachmentReference</type>* <name>pInputAttachments</name></member>
1122 <member optional="true"><type>uint32_t</type> <name>colorAttachmentCount</name></member>
1123 <member len="colorAttachmentCount">const <type>VkAttachmentReference</type>* <name>pColorAttachments</name></member>
1124 <member optional="true" len="colorAttachmentCount">const <type>VkAttachmentReference</type>* <name>pResolveAttachments</name></member>
1125 <member optional="true">const <type>VkAttachmentReference</type>* <name>pDepthStencilAttachment</name></member>
1126 <member optional="true"><type>uint32_t</type> <name>preserveAttachmentCount</name></member>
1127 <member len="preserveAttachmentCount">const <type>uint32_t</type>* <name>pPreserveAttachments</name></member>
1128 </type>
1129 <type category="struct" name="VkSubpassDependency">
1130 <member><type>uint32_t</type> <name>srcSubpass</name></member>
1131 <member><type>uint32_t</type> <name>dstSubpass</name></member>
1132 <member><type>VkPipelineStageFlags</type> <name>srcStageMask</name></member>
1133 <member><type>VkPipelineStageFlags</type> <name>dstStageMask</name></member>
1134 <member optional="true"><type>VkAccessFlags</type> <name>srcAccessMask</name></member> <!-- Memory accesses from the source of the dependency to synchronize -->
1135 <member optional="true"><type>VkAccessFlags</type> <name>dstAccessMask</name></member> <!-- Memory accesses from the destination of the dependency to synchronize -->
1136 <member optional="true"><type>VkDependencyFlags</type> <name>dependencyFlags</name></member>
1137 </type>
1138 <type category="struct" name="VkRenderPassCreateInfo">
1139 <member values="VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1140 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1141 <member optional="true"><type>VkRenderPassCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
1142 <member optional="true"><type>uint32_t</type> <name>attachmentCount</name></member>
1143 <member len="attachmentCount">const <type>VkAttachmentDescription</type>* <name>pAttachments</name></member>
1144 <member><type>uint32_t</type> <name>subpassCount</name></member>
1145 <member len="subpassCount">const <type>VkSubpassDescription</type>* <name>pSubpasses</name></member>
1146 <member optional="true"><type>uint32_t</type> <name>dependencyCount</name></member>
1147 <member len="dependencyCount">const <type>VkSubpassDependency</type>* <name>pDependencies</name></member>
1148 </type>
1149 <type category="struct" name="VkEventCreateInfo">
1150 <member values="VK_STRUCTURE_TYPE_EVENT_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1151 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1152 <member optional="true"><type>VkEventCreateFlags</type> <name>flags</name></member> <!-- Event creation flags -->
1153 </type>
1154 <type category="struct" name="VkFenceCreateInfo">
1155 <member values="VK_STRUCTURE_TYPE_FENCE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1156 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1157 <member optional="true"><type>VkFenceCreateFlags</type> <name>flags</name></member> <!-- Fence creation flags -->
1158 </type>
1159 <type category="struct" name="VkPhysicalDeviceFeatures">
1160 <member><type>VkBool32</type> <name>robustBufferAccess</name></member> <!-- out of bounds buffer accesses are well defined -->
1161 <member><type>VkBool32</type> <name>fullDrawIndexUint32</name></member> <!-- full 32-bit range of indices for indexed draw calls -->
1162 <member><type>VkBool32</type> <name>imageCubeArray</name></member> <!-- image views which are arrays of cube maps -->
1163 <member><type>VkBool32</type> <name>independentBlend</name></member> <!-- blending operations are controlled per-attachment -->
1164 <member><type>VkBool32</type> <name>geometryShader</name></member> <!-- geometry stage -->
1165 <member><type>VkBool32</type> <name>tessellationShader</name></member> <!-- tessellation control and evaluation stage -->
1166 <member><type>VkBool32</type> <name>sampleRateShading</name></member> <!-- per-sample shading and interpolation -->
1167 <member><type>VkBool32</type> <name>dualSrcBlend</name></member> <!-- blend operations which take two sources -->
1168 <member><type>VkBool32</type> <name>logicOp</name></member> <!-- logic operations -->
1169 <member><type>VkBool32</type> <name>multiDrawIndirect</name></member> <!-- multi draw indirect -->
1170 <member><type>VkBool32</type> <name>drawIndirectFirstInstance</name></member> <!-- indirect draws can use non-zero firstInstance -->
1171 <member><type>VkBool32</type> <name>depthClamp</name></member> <!-- depth clamping -->
1172 <member><type>VkBool32</type> <name>depthBiasClamp</name></member> <!-- depth bias clamping -->
1173 <member><type>VkBool32</type> <name>fillModeNonSolid</name></member> <!-- point and wireframe fill modes -->
1174 <member><type>VkBool32</type> <name>depthBounds</name></member> <!-- depth bounds test -->
1175 <member><type>VkBool32</type> <name>wideLines</name></member> <!-- lines with width greater than 1 -->
1176 <member><type>VkBool32</type> <name>largePoints</name></member> <!-- points with size greater than 1 -->
1177 <member><type>VkBool32</type> <name>alphaToOne</name></member> <!-- the fragment alpha component can be forced to maximum representable alpha value -->
1178 <member><type>VkBool32</type> <name>multiViewport</name></member> <!-- viewport arrays -->
1179 <member><type>VkBool32</type> <name>samplerAnisotropy</name></member> <!-- anisotropic sampler filtering -->
1180 <member><type>VkBool32</type> <name>textureCompressionETC2</name></member> <!-- ETC texture compression formats -->
1181 <member><type>VkBool32</type> <name>textureCompressionASTC_LDR</name></member> <!-- ASTC LDR texture compression formats -->
1182 <member><type>VkBool32</type> <name>textureCompressionBC</name></member> <!-- BC1-7 texture compressed formats -->
1183 <member><type>VkBool32</type> <name>occlusionQueryPrecise</name></member> <!-- precise occlusion queries returning actual sample counts -->
1184 <member><type>VkBool32</type> <name>pipelineStatisticsQuery</name></member> <!-- pipeline statistics query -->
1185 <member><type>VkBool32</type> <name>vertexPipelineStoresAndAtomics</name></member> <!-- stores and atomic ops on storage buffers and images are supported in vertex, tessellation, and geometry stages -->
1186 <member><type>VkBool32</type> <name>fragmentStoresAndAtomics</name></member> <!-- stores and atomic ops on storage buffers and images are supported in the fragment stage -->
1187 <member><type>VkBool32</type> <name>shaderTessellationAndGeometryPointSize</name></member><!-- tessellation and geometry stages can export point size -->
1188 <member><type>VkBool32</type> <name>shaderImageGatherExtended</name></member> <!-- image gather with run-time values and independent offsets -->
1189 <member><type>VkBool32</type> <name>shaderStorageImageExtendedFormats</name></member> <!-- the extended set of formats can be used for storage images -->
1190 <member><type>VkBool32</type> <name>shaderStorageImageMultisample</name></member> <!-- multisample images can be used for storage images -->
1191 <member><type>VkBool32</type> <name>shaderStorageImageReadWithoutFormat</name></member> <!-- read from storage image does not require format qualifier -->
1192 <member><type>VkBool32</type> <name>shaderStorageImageWriteWithoutFormat</name></member> <!-- write to storage image does not require format qualifier -->
1193 <member><type>VkBool32</type> <name>shaderUniformBufferArrayDynamicIndexing</name></member> <!-- arrays of uniform buffers can be accessed with dynamically uniform indices -->
1194 <member><type>VkBool32</type> <name>shaderSampledImageArrayDynamicIndexing</name></member> <!-- arrays of sampled images can be accessed with dynamically uniform indices -->
1195 <member><type>VkBool32</type> <name>shaderStorageBufferArrayDynamicIndexing</name></member> <!-- arrays of storage buffers can be accessed with dynamically uniform indices -->
1196 <member><type>VkBool32</type> <name>shaderStorageImageArrayDynamicIndexing</name></member> <!-- arrays of storage images can be accessed with dynamically uniform indices -->
1197 <member><type>VkBool32</type> <name>shaderClipDistance</name></member> <!-- clip distance in shaders -->
1198 <member><type>VkBool32</type> <name>shaderCullDistance</name></member> <!-- cull distance in shaders -->
1199 <member><type>VkBool32</type> <name>shaderFloat64</name></member> <!-- 64-bit floats (doubles) in shaders -->
1200 <member><type>VkBool32</type> <name>shaderInt64</name></member> <!-- 64-bit integers in shaders -->
1201 <member><type>VkBool32</type> <name>shaderInt16</name></member> <!-- 16-bit integers in shaders -->
1202 <member><type>VkBool32</type> <name>shaderResourceResidency</name></member> <!-- shader can use texture operations that return resource residency information (requires sparseNonResident support) -->
1203 <member><type>VkBool32</type> <name>shaderResourceMinLod</name></member> <!-- shader can use texture operations that specify minimum resource level of detail -->
1204 <member><type>VkBool32</type> <name>sparseBinding</name></member> <!-- Sparse resources support: Resource memory can be managed at opaque page level rather than object level -->
1205 <member><type>VkBool32</type> <name>sparseResidencyBuffer</name></member> <!-- Sparse resources support: GPU can access partially resident buffers -->
1206 <member><type>VkBool32</type> <name>sparseResidencyImage2D</name></member> <!-- Sparse resources support: GPU can access partially resident 2D (non-MSAA non-depth/stencil) images -->
1207 <member><type>VkBool32</type> <name>sparseResidencyImage3D</name></member> <!-- Sparse resources support: GPU can access partially resident 3D images -->
1208 <member><type>VkBool32</type> <name>sparseResidency2Samples</name></member> <!-- Sparse resources support: GPU can access partially resident MSAA 2D images with 2 samples -->
1209 <member><type>VkBool32</type> <name>sparseResidency4Samples</name></member> <!-- Sparse resources support: GPU can access partially resident MSAA 2D images with 4 samples -->
1210 <member><type>VkBool32</type> <name>sparseResidency8Samples</name></member> <!-- Sparse resources support: GPU can access partially resident MSAA 2D images with 8 samples -->
1211 <member><type>VkBool32</type> <name>sparseResidency16Samples</name></member> <!-- Sparse resources support: GPU can access partially resident MSAA 2D images with 16 samples -->
1212 <member><type>VkBool32</type> <name>sparseResidencyAliased</name></member> <!-- Sparse resources support: GPU can correctly access data aliased into multiple locations (opt-in) -->
1213 <member><type>VkBool32</type> <name>variableMultisampleRate</name></member> <!-- multisample rate must be the same for all pipelines in a subpass -->
1214 <member><type>VkBool32</type> <name>inheritedQueries</name></member> <!-- Queries may be inherited from primary to secondary command buffers -->
1215 </type>
1216 <type category="struct" name="VkPhysicalDeviceSparseProperties" returnedonly="true">
1217 <member><type>VkBool32</type> <name>residencyStandard2DBlockShape</name></member> <!-- Sparse resources support: GPU will access all 2D (single sample) sparse resources using the standard sparse image block shapes (based on pixel format) -->
1218 <member><type>VkBool32</type> <name>residencyStandard2DMultisampleBlockShape</name></member> <!-- Sparse resources support: GPU will access all 2D (multisample) sparse resources using the standard sparse image block shapes (based on pixel format) -->
1219 <member><type>VkBool32</type> <name>residencyStandard3DBlockShape</name></member> <!-- Sparse resources support: GPU will access all 3D sparse resources using the standard sparse image block shapes (based on pixel format) -->
1220 <member><type>VkBool32</type> <name>residencyAlignedMipSize</name></member> <!-- Sparse resources support: Images with mip level dimensions that are NOT a multiple of the sparse image block dimensions will be placed in the mip tail -->
1221 <member><type>VkBool32</type> <name>residencyNonResidentStrict</name></member> <!-- Sparse resources support: GPU can consistently access non-resident regions of a resource, all reads return as if data is 0, writes are discarded -->
1222 </type>
1223 <type category="struct" name="VkPhysicalDeviceLimits" returnedonly="true">
1224 <!-- resource maximum sizes -->
1225 <member><type>uint32_t</type> <name>maxImageDimension1D</name></member> <!-- max 1D image dimension -->
1226 <member><type>uint32_t</type> <name>maxImageDimension2D</name></member> <!-- max 2D image dimension -->
1227 <member><type>uint32_t</type> <name>maxImageDimension3D</name></member> <!-- max 3D image dimension -->
1228 <member><type>uint32_t</type> <name>maxImageDimensionCube</name></member> <!-- max cubemap image dimension -->
1229 <member><type>uint32_t</type> <name>maxImageArrayLayers</name></member> <!-- max layers for image arrays -->
1230 <member><type>uint32_t</type> <name>maxTexelBufferElements</name></member> <!-- max texel buffer size (fstexels) -->
1231 <member><type>uint32_t</type> <name>maxUniformBufferRange</name></member> <!-- max uniform buffer range (bytes) -->
1232 <member><type>uint32_t</type> <name>maxStorageBufferRange</name></member> <!-- max storage buffer range (bytes) -->
1233 <member><type>uint32_t</type> <name>maxPushConstantsSize</name></member> <!-- max size of the push constants pool (bytes) -->
1234 <!-- memory limits -->
1235 <member><type>uint32_t</type> <name>maxMemoryAllocationCount</name></member> <!-- max number of device memory allocations supported -->
1236 <member><type>uint32_t</type> <name>maxSamplerAllocationCount</name></member> <!-- max number of samplers that can be allocated on a device -->
1237 <member><type>VkDeviceSize</type> <name>bufferImageGranularity</name></member> <!-- Granularity (in bytes) at which buffers and images can be bound to adjacent memory for simultaneous usage -->
1238 <member><type>VkDeviceSize</type> <name>sparseAddressSpaceSize</name></member> <!-- Total address space available for sparse allocations (bytes) -->
1239 <!-- descriptor set limits -->
1240 <member><type>uint32_t</type> <name>maxBoundDescriptorSets</name></member> <!-- max number of descriptors sets that can be bound to a pipeline -->
1241 <member><type>uint32_t</type> <name>maxPerStageDescriptorSamplers</name></member> <!-- max number of samplers allowed per-stage in a descriptor set -->
1242 <member><type>uint32_t</type> <name>maxPerStageDescriptorUniformBuffers</name></member> <!-- max number of uniform buffers allowed per-stage in a descriptor set -->
1243 <member><type>uint32_t</type> <name>maxPerStageDescriptorStorageBuffers</name></member> <!-- max number of storage buffers allowed per-stage in a descriptor set -->
1244 <member><type>uint32_t</type> <name>maxPerStageDescriptorSampledImages</name></member> <!-- max number of sampled images allowed per-stage in a descriptor set -->
1245 <member><type>uint32_t</type> <name>maxPerStageDescriptorStorageImages</name></member> <!-- max number of storage images allowed per-stage in a descriptor set -->
1246 <member><type>uint32_t</type> <name>maxPerStageDescriptorInputAttachments</name></member> <!-- max number of input attachments allowed per-stage in a descriptor set -->
1247 <member><type>uint32_t</type> <name>maxPerStageResources</name></member> <!-- max number of resources allowed by a single stage -->
1248 <member><type>uint32_t</type> <name>maxDescriptorSetSamplers</name></member> <!-- max number of samplers allowed in all stages in a descriptor set -->
1249 <member><type>uint32_t</type> <name>maxDescriptorSetUniformBuffers</name></member> <!-- max number of uniform buffers allowed in all stages in a descriptor set -->
1250 <member><type>uint32_t</type> <name>maxDescriptorSetUniformBuffersDynamic</name></member> <!-- max number of dynamic uniform buffers allowed in all stages in a descriptor set -->
1251 <member><type>uint32_t</type> <name>maxDescriptorSetStorageBuffers</name></member> <!-- max number of storage buffers allowed in all stages in a descriptor set -->
1252 <member><type>uint32_t</type> <name>maxDescriptorSetStorageBuffersDynamic</name></member> <!-- max number of dynamic storage buffers allowed in all stages in a descriptor set -->
1253 <member><type>uint32_t</type> <name>maxDescriptorSetSampledImages</name></member> <!-- max number of sampled images allowed in all stages in a descriptor set -->
1254 <member><type>uint32_t</type> <name>maxDescriptorSetStorageImages</name></member> <!-- max number of storage images allowed in all stages in a descriptor set -->
1255 <member><type>uint32_t</type> <name>maxDescriptorSetInputAttachments</name></member> <!-- max number of input attachments allowed in all stages in a descriptor set -->
1256 <!-- vertex stage limits -->
1257 <member><type>uint32_t</type> <name>maxVertexInputAttributes</name></member> <!-- max number of vertex input attribute slots -->
1258 <member><type>uint32_t</type> <name>maxVertexInputBindings</name></member> <!-- max number of vertex input binding slots -->
1259 <member><type>uint32_t</type> <name>maxVertexInputAttributeOffset</name></member> <!-- max vertex input attribute offset added to vertex buffer offset -->
1260 <member><type>uint32_t</type> <name>maxVertexInputBindingStride</name></member> <!-- max vertex input binding stride -->
1261 <member><type>uint32_t</type> <name>maxVertexOutputComponents</name></member> <!-- max number of output components written by vertex shader -->
1262 <!-- tessellation control stage limits -->
1263 <member><type>uint32_t</type> <name>maxTessellationGenerationLevel</name></member> <!-- max level supported by tessellation primitive generator -->
1264 <member><type>uint32_t</type> <name>maxTessellationPatchSize</name></member> <!-- max patch size (vertices) -->
1265 <member><type>uint32_t</type> <name>maxTessellationControlPerVertexInputComponents</name></member> <!-- max number of input components per-vertex in TCS -->
1266 <member><type>uint32_t</type> <name>maxTessellationControlPerVertexOutputComponents</name></member> <!-- max number of output components per-vertex in TCS -->
1267 <member><type>uint32_t</type> <name>maxTessellationControlPerPatchOutputComponents</name></member> <!-- max number of output components per-patch in TCS -->
1268 <member><type>uint32_t</type> <name>maxTessellationControlTotalOutputComponents</name></member> <!-- max total number of per-vertex and per-patch output components in TCS -->
1269 <!-- tessellation evaluation stage limits -->
1270 <member><type>uint32_t</type> <name>maxTessellationEvaluationInputComponents</name></member> <!-- max number of input components per vertex in TES -->
1271 <member><type>uint32_t</type> <name>maxTessellationEvaluationOutputComponents</name></member> <!-- max number of output components per vertex in TES -->
1272 <!-- geometry stage limits -->
1273 <member><type>uint32_t</type> <name>maxGeometryShaderInvocations</name></member> <!-- max invocation count supported in geometry shader -->
1274 <member><type>uint32_t</type> <name>maxGeometryInputComponents</name></member> <!-- max number of input components read in geometry stage -->
1275 <member><type>uint32_t</type> <name>maxGeometryOutputComponents</name></member> <!-- max number of output components written in geometry stage -->
1276 <member><type>uint32_t</type> <name>maxGeometryOutputVertices</name></member> <!-- max number of vertices that can be emitted in geometry stage -->
1277 <member><type>uint32_t</type> <name>maxGeometryTotalOutputComponents</name></member> <!-- max total number of components (all vertices) written in geometry stage -->
1278 <!-- fragment stage limits -->
1279 <member><type>uint32_t</type> <name>maxFragmentInputComponents</name></member> <!-- max number of input compontents read in fragment stage -->
1280 <member><type>uint32_t</type> <name>maxFragmentOutputAttachments</name></member> <!-- max number of output attachments written in fragment stage -->
1281 <member><type>uint32_t</type> <name>maxFragmentDualSrcAttachments</name></member> <!-- max number of output attachments written when using dual source blending -->
1282 <member><type>uint32_t</type> <name>maxFragmentCombinedOutputResources</name></member><!-- max total number of storage buffers, storage images and output buffers -->
1283 <!-- compute stage limits -->
1284 <member><type>uint32_t</type> <name>maxComputeSharedMemorySize</name></member> <!-- max total storage size of work group local storage (bytes) -->
1285 <member><type>uint32_t</type> <name>maxComputeWorkGroupCount</name>[3]</member> <!-- max num of compute work groups that may be dispatched by a single command (x,y,z) -->
1286 <member><type>uint32_t</type> <name>maxComputeWorkGroupInvocations</name></member> <!-- max total compute invocations in a single local work group -->
1287 <member><type>uint32_t</type> <name>maxComputeWorkGroupSize</name>[3]</member> <!-- max local size of a compute work group (x,y,z) -->
1288 <member><type>uint32_t</type> <name>subPixelPrecisionBits</name></member> <!-- number bits of subpixel precision in screen x and y-->
1289 <member><type>uint32_t</type> <name>subTexelPrecisionBits</name></member> <!-- number bits of precision for selecting texel weights-->
1290 <member><type>uint32_t</type> <name>mipmapPrecisionBits</name></member> <!-- number bits of precision for selecting mipmap weights -->
1291 <member><type>uint32_t</type> <name>maxDrawIndexedIndexValue</name></member> <!-- max index value for indexed draw calls (for 32-bit indices) -->
1292 <member><type>uint32_t</type> <name>maxDrawIndirectCount</name></member> <!-- max draw count for indirect draw calls -->
1293 <member><type>float</type> <name>maxSamplerLodBias</name></member> <!-- max absolute sampler level of detail bias -->
1294 <member><type>float</type> <name>maxSamplerAnisotropy</name></member> <!-- max degree of sampler anisotropy -->
1295 <member><type>uint32_t</type> <name>maxViewports</name></member> <!-- max number of active viewports -->
1296 <member><type>uint32_t</type> <name>maxViewportDimensions</name>[2]</member> <!-- max viewport dimensions (x,y) -->
1297 <member><type>float</type> <name>viewportBoundsRange</name>[2]</member> <!-- viewport bounds range (min,max) -->
1298 <member><type>uint32_t</type> <name>viewportSubPixelBits</name></member> <!-- number bits of subpixel precision for viewport -->
1299 <member><type>size_t</type> <name>minMemoryMapAlignment</name></member> <!-- min required alignment of pointers returned by MapMemory (bytes) -->
1300 <member><type>VkDeviceSize</type> <name>minTexelBufferOffsetAlignment</name></member> <!-- min required alignment for texel buffer offsets (bytes) -->
1301 <member><type>VkDeviceSize</type> <name>minUniformBufferOffsetAlignment</name></member> <!-- min required alignment for uniform buffer sizes and offsets (bytes) -->
1302 <member><type>VkDeviceSize</type> <name>minStorageBufferOffsetAlignment</name></member> <!-- min required alignment for storage buffer offsets (bytes) -->
1303 <member><type>int32_t</type> <name>minTexelOffset</name></member> <!-- min texel offset for OpTextureSampleOffset -->
1304 <member><type>uint32_t</type> <name>maxTexelOffset</name></member> <!-- max texel offset for OpTextureSampleOffset -->
1305 <member><type>int32_t</type> <name>minTexelGatherOffset</name></member> <!-- min texel offset for OpTextureGatherOffset -->
1306 <member><type>uint32_t</type> <name>maxTexelGatherOffset</name></member> <!-- max texel offset for OpTextureGatherOffset -->
1307 <member><type>float</type> <name>minInterpolationOffset</name></member> <!-- furthest negative offset for interpolateAtOffset -->
1308 <member><type>float</type> <name>maxInterpolationOffset</name></member> <!-- furthest positive offset for interpolateAtOffset -->
1309 <member><type>uint32_t</type> <name>subPixelInterpolationOffsetBits</name></member> <!-- number of subpixel bits for interpolateAtOffset -->
1310 <member><type>uint32_t</type> <name>maxFramebufferWidth</name></member> <!-- max width for a framebuffer -->
1311 <member><type>uint32_t</type> <name>maxFramebufferHeight</name></member> <!-- max height for a framebuffer -->
1312 <member><type>uint32_t</type> <name>maxFramebufferLayers</name></member> <!-- max layer count for a layered framebuffer -->
1313 <member optional="true"><type>VkSampleCountFlags</type> <name>framebufferColorSampleCounts</name></member> <!-- supported color sample counts for a framebuffer -->
1314 <member optional="true"><type>VkSampleCountFlags</type> <name>framebufferDepthSampleCounts</name></member> <!-- supported depth sample counts for a framebuffer -->
1315 <member optional="true"><type>VkSampleCountFlags</type> <name>framebufferStencilSampleCounts</name></member> <!-- supported stencil sample counts for a framebuffer -->
1316 <member optional="true"><type>VkSampleCountFlags</type> <name>framebufferNoAttachmentsSampleCounts</name></member> <!-- supported sample counts for a framebuffer with no attachments -->
1317 <member><type>uint32_t</type> <name>maxColorAttachments</name></member> <!-- max number of color attachments per subpass -->
1318 <member optional="true"><type>VkSampleCountFlags</type> <name>sampledImageColorSampleCounts</name></member> <!-- supported color sample counts for a non-integer sampled image -->
1319 <member optional="true"><type>VkSampleCountFlags</type> <name>sampledImageIntegerSampleCounts</name></member> <!-- supported sample counts for an integer image -->
1320 <member optional="true"><type>VkSampleCountFlags</type> <name>sampledImageDepthSampleCounts</name></member> <!-- supported depth sample counts for a sampled image -->
1321 <member optional="true"><type>VkSampleCountFlags</type> <name>sampledImageStencilSampleCounts</name></member> <!-- supported stencil sample counts for a sampled image -->
1322 <member optional="true"><type>VkSampleCountFlags</type> <name>storageImageSampleCounts</name></member> <!-- supported sample counts for a storage image -->
1323 <member><type>uint32_t</type> <name>maxSampleMaskWords</name></member> <!-- max number of sample mask words -->
1324 <member><type>VkBool32</type> <name>timestampComputeAndGraphics</name></member> <!-- timestamps on graphics and compute queues -->
1325 <member><type>float</type> <name>timestampPeriod</name></member> <!-- number of nanoseconds it takes for timestamp query value to increment by 1 -->
1326 <member><type>uint32_t</type> <name>maxClipDistances</name></member> <!-- max number of clip distances -->
1327 <member><type>uint32_t</type> <name>maxCullDistances</name></member> <!-- max number of cull distances -->
1328 <member><type>uint32_t</type> <name>maxCombinedClipAndCullDistances</name></member> <!-- max combined number of user clipping -->
1329 <member><type>uint32_t</type> <name>discreteQueuePriorities</name></member> <!-- distinct queue priorities available -->
1330 <member><type>float</type> <name>pointSizeRange</name>[2]</member> <!-- range (min,max) of supported point sizes -->
1331 <member><type>float</type> <name>lineWidthRange</name>[2]</member> <!-- range (min,max) of supported line widths -->
1332 <member><type>float</type> <name>pointSizeGranularity</name></member> <!-- granularity of supported point sizes -->
1333 <member><type>float</type> <name>lineWidthGranularity</name></member> <!-- granularity of supported line widths -->
1334 <member><type>VkBool32</type> <name>strictLines</name></member> <!-- line rasterization follows preferred rules -->
1335 <member><type>VkBool32</type> <name>standardSampleLocations</name></member> <!-- supports standard sample locations for all supported sample counts -->
1336 <member><type>VkDeviceSize</type> <name>optimalBufferCopyOffsetAlignment</name></member> <!-- optimal offset of buffer copies -->
1337 <member><type>VkDeviceSize</type> <name>optimalBufferCopyRowPitchAlignment</name></member><!-- optimal pitch of buffer copies -->
1338 <member><type>VkDeviceSize</type> <name>nonCoherentAtomSize</name></member> <!-- minimum size and alignment for non-coherent host-mapped device memory access -->
1339 </type>
1340 <type category="struct" name="VkSemaphoreCreateInfo">
1341 <member values="VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1342 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1343 <member optional="true"><type>VkSemaphoreCreateFlags</type> <name>flags</name></member> <!-- Semaphore creation flags -->
1344 </type>
1345 <type category="struct" name="VkQueryPoolCreateInfo">
1346 <member values="VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1347 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1348 <member optional="true"><type>VkQueryPoolCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
1349 <member><type>VkQueryType</type> <name>queryType</name></member>
1350 <member><type>uint32_t</type> <name>queryCount</name></member>
1351 <member optional="true" noautovalidity="true"><type>VkQueryPipelineStatisticFlags</type> <name>pipelineStatistics</name></member> <!-- Optional -->
1352 </type>
1353 <type category="struct" name="VkFramebufferCreateInfo">
1354 <member values="VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO"><type>VkStructureType</type> <name>sType</name></member>
1355 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1356 <member optional="true"><type>VkFramebufferCreateFlags</type> <name>flags</name></member> <!-- Reserved -->
1357 <member><type>VkRenderPass</type> <name>renderPass</name></member>
1358 <member optional="true"><type>uint32_t</type> <name>attachmentCount</name></member>
1359 <member len="attachmentCount">const <type>VkImageView</type>* <name>pAttachments</name></member>
1360 <member><type>uint32_t</type> <name>width</name></member>
1361 <member><type>uint32_t</type> <name>height</name></member>
1362 <member><type>uint32_t</type> <name>layers</name></member>
1363 </type>
1364 <type category="struct" name="VkDrawIndirectCommand">
1365 <member><type>uint32_t</type> <name>vertexCount</name></member>
1366 <member><type>uint32_t</type> <name>instanceCount</name></member>
1367 <member><type>uint32_t</type> <name>firstVertex</name></member>
1368 <member><type>uint32_t</type> <name>firstInstance</name></member>
1369 </type>
1370 <type category="struct" name="VkDrawIndexedIndirectCommand">
1371 <member><type>uint32_t</type> <name>indexCount</name></member>
1372 <member><type>uint32_t</type> <name>instanceCount</name></member>
1373 <member><type>uint32_t</type> <name>firstIndex</name></member>
1374 <member><type>int32_t</type> <name>vertexOffset</name></member>
1375 <member><type>uint32_t</type> <name>firstInstance</name></member>
1376 </type>
1377 <type category="struct" name="VkDispatchIndirectCommand">
1378 <member><type>uint32_t</type> <name>x</name></member>
1379 <member><type>uint32_t</type> <name>y</name></member>
1380 <member><type>uint32_t</type> <name>z</name></member>
1381 </type>
1382 <type category="struct" name="VkSubmitInfo">
1383 <member values="VK_STRUCTURE_TYPE_SUBMIT_INFO"><type>VkStructureType</type> <name>sType</name></member>
1384 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1385 <member optional="true"><type>uint32_t</type> <name>waitSemaphoreCount</name></member>
1386 <member len="waitSemaphoreCount">const <type>VkSemaphore</type>* <name>pWaitSemaphores</name></member>
1387 <member len="waitSemaphoreCount">const <type>VkPipelineStageFlags</type>* <name>pWaitDstStageMask</name></member>
1388 <member optional="true"><type>uint32_t</type> <name>commandBufferCount</name></member>
1389 <member len="commandBufferCount">const <type>VkCommandBuffer</type>* <name>pCommandBuffers</name></member>
1390 <member optional="true"><type>uint32_t</type> <name>signalSemaphoreCount</name></member>
1391 <member len="signalSemaphoreCount">const <type>VkSemaphore</type>* <name>pSignalSemaphores</name></member>
1392 </type>
1393 <!-- WSI extensions -->
1394 <type category="struct" name="VkDisplayPropertiesKHR" returnedonly="true">
1395 <member><type>VkDisplayKHR</type> <name>display</name></member> <!-- Handle of the display object -->
1396 <member len="null-terminated">const <type>char</type>* <name>displayName</name></member> <!-- Name of the display -->
1397 <member><type>VkExtent2D</type> <name>physicalDimensions</name></member> <!-- In millimeters? -->
1398 <member><type>VkExtent2D</type> <name>physicalResolution</name></member> <!-- Max resolution for CRT? -->
1399 <member optional="true"><type>VkSurfaceTransformFlagsKHR</type> <name>supportedTransforms</name></member> <!-- one or more bits from VkSurfaceTransformFlagsKHR -->
1400 <member><type>VkBool32</type> <name>planeReorderPossible</name></member> <!-- VK_TRUE if the overlay plane's z-order can be changed on this display. -->
1401 <member><type>VkBool32</type> <name>persistentContent</name></member> <!-- VK_TRUE if this is a "smart" display that supports self-refresh/internal buffering. -->
1402 </type>
1403 <type category="struct" name="VkDisplayPlanePropertiesKHR" returnedonly="true">
1404 <member><type>VkDisplayKHR</type> <name>currentDisplay</name></member> <!-- Display the plane is currently associated with. Will be VK_NULL_HANDLE if the plane is not in use. -->
1405 <member><type>uint32_t</type> <name>currentStackIndex</name></member> <!-- Current z-order of the plane. -->
1406 </type>
1407 <type category="struct" name="VkDisplayModeParametersKHR">
1408 <member><type>VkExtent2D</type> <name>visibleRegion</name></member> <!-- Visible scanout region. -->
1409 <member><type>uint32_t</type> <name>refreshRate</name></member> <!-- Number of times per second the display is updated. -->
1410 </type>
1411 <type category="struct" name="VkDisplayModePropertiesKHR" returnedonly="true">
1412 <member><type>VkDisplayModeKHR</type> <name>displayMode</name></member> <!-- Handle of this display mode. -->
1413 <member><type>VkDisplayModeParametersKHR</type> <name>parameters</name></member> <!-- The parameters this mode uses. -->
1414 </type>
1415 <type category="struct" name="VkDisplayModeCreateInfoKHR">
1416 <member values="VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1417 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1418 <member optional="true"><type>VkDisplayModeCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1419 <member><type>VkDisplayModeParametersKHR</type> <name>parameters</name></member> <!-- The parameters this mode uses. -->
1420 </type>
1421 <type category="struct" name="VkDisplayPlaneCapabilitiesKHR" returnedonly="true">
1422 <member optional="true"><type>VkDisplayPlaneAlphaFlagsKHR</type> <name>supportedAlpha</name></member> <!-- Types of alpha blending supported, if any. -->
1423 <member><type>VkOffset2D</type> <name>minSrcPosition</name></member> <!-- Does the plane have any position and extent restrictions? -->
1424 <member><type>VkOffset2D</type> <name>maxSrcPosition</name></member>
1425 <member><type>VkExtent2D</type> <name>minSrcExtent</name></member>
1426 <member><type>VkExtent2D</type> <name>maxSrcExtent</name></member>
1427 <member><type>VkOffset2D</type> <name>minDstPosition</name></member>
1428 <member><type>VkOffset2D</type> <name>maxDstPosition</name></member>
1429 <member><type>VkExtent2D</type> <name>minDstExtent</name></member>
1430 <member><type>VkExtent2D</type> <name>maxDstExtent</name></member>
1431 </type>
1432 <type category="struct" name="VkDisplaySurfaceCreateInfoKHR">
1433 <member values="VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1434 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1435 <member optional="true"><type>VkDisplaySurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1436 <member><type>VkDisplayModeKHR</type> <name>displayMode</name></member> <!-- The mode to use when displaying this surface -->
1437 <member><type>uint32_t</type> <name>planeIndex</name></member> <!-- The plane on which this surface appears. Must be between 0 and the value returned by vkGetPhysicalDeviceDisplayPlanePropertiesKHR() in pPropertyCount. -->
1438 <member><type>uint32_t</type> <name>planeStackIndex</name></member> <!-- The z-order of the plane. -->
1439 <member><type>VkSurfaceTransformFlagBitsKHR</type> <name>transform</name></member> <!-- Transform to apply to the images as part of the scanout operation -->
1440 <member><type>float</type> <name>globalAlpha</name></member> <!-- Global alpha value. Must be between 0 and 1, inclusive. Ignored if alphaMode is not VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR -->
1441 <member><type>VkDisplayPlaneAlphaFlagBitsKHR</type> <name>alphaMode</name></member> <!-- What type of alpha blending to use. Must be a bit from vkGetDisplayPlanePropertiesKHR::supportedAlpha. -->
1442 <member><type>VkExtent2D</type> <name>imageExtent</name></member> <!-- size of the images to use with this surface -->
1443 </type>
1444 <type category="struct" name="VkDisplayPresentInfoKHR">
1445 <member values="VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1446 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1447 <member><type>VkRect2D</type> <name>srcRect</name></member> <!-- Rectangle within the presentable image to read pixel data from when presenting to the display. -->
1448 <member><type>VkRect2D</type> <name>dstRect</name></member> <!-- Rectangle within the current display mode's visible region to display srcRectangle in. -->
1449 <member><type>VkBool32</type> <name>persistent</name></member> <!-- For smart displays, use buffered mode. If the display properties member "persistentMode" is VK_FALSE, this member must always be VK_FALSE. -->
1450 </type>
1451 <type category="struct" name="VkSurfaceCapabilitiesKHR" returnedonly="true">
1452 <member><type>uint32_t</type> <name>minImageCount</name></member> <!-- Supported minimum number of images for the surface -->
1453 <member><type>uint32_t</type> <name>maxImageCount</name></member> <!-- Supported maximum number of images for the surface, 0 for unlimited -->
1454 <member><type>VkExtent2D</type> <name>currentExtent</name></member> <!-- Current image width and height for the surface, (0, 0) if undefined -->
1455 <member><type>VkExtent2D</type> <name>minImageExtent</name></member> <!-- Supported minimum image width and height for the surface -->
1456 <member><type>VkExtent2D</type> <name>maxImageExtent</name></member> <!-- Supported maximum image width and height for the surface -->
1457 <member><type>uint32_t</type> <name>maxImageArrayLayers</name></member> <!-- Supported maximum number of image layers for the surface -->
1458 <member optional="true"><type>VkSurfaceTransformFlagsKHR</type> <name>supportedTransforms</name></member> <!-- 1 or more bits representing the transforms supported -->
1459 <member><type>VkSurfaceTransformFlagBitsKHR</type> <name>currentTransform</name></member> <!-- The surface's current transform relative to the device's natural orientation -->
1460 <member optional="true"><type>VkCompositeAlphaFlagsKHR</type> <name>supportedCompositeAlpha</name></member> <!-- 1 or more bits representing the alpha compositing modes supported -->
1461 <member optional="true"><type>VkImageUsageFlags</type> <name>supportedUsageFlags</name></member> <!-- Supported image usage flags for the surface -->
1462 </type>
1463 <type category="struct" name="VkAndroidSurfaceCreateInfoKHR">
1464 <member values="VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1465 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1466 <member optional="true"><type>VkAndroidSurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1467 <member noautovalidity="true"><type>ANativeWindow</type>* <name>window</name></member>
1468 </type>
1469 <type category="struct" name="VkMirSurfaceCreateInfoKHR">
1470 <member values="VK_STRUCTURE_TYPE_MIR_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1471 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1472 <member optional="true"><type>VkMirSurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1473 <member noautovalidity="true"><type>MirConnection</type>* <name>connection</name></member>
1474 <member noautovalidity="true"><type>MirSurface</type>* <name>mirSurface</name></member>
1475 </type>
1476 <type category="struct" name="VkViSurfaceCreateInfoNN">
1477 <member values="VK_STRUCTURE_TYPE_VI_SURFACE_CREATE_INFO_NN"><type>VkStructureType</type> <name>sType</name></member>
1478 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1479 <member optional="true"><type>VkViSurfaceCreateFlagsNN</type> <name>flags</name></member> <!-- Reserved -->
1480 <member><type>void</type>* <name>window</name></member>
1481 </type>
1482 <type category="struct" name="VkWaylandSurfaceCreateInfoKHR">
1483 <member values="VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1484 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1485 <member optional="true"><type>VkWaylandSurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1486 <member noautovalidity="true">struct <type>wl_display</type>* <name>display</name></member>
1487 <member noautovalidity="true">struct <type>wl_surface</type>* <name>surface</name></member>
1488 </type>
1489 <type category="struct" name="VkWin32SurfaceCreateInfoKHR">
1490 <member values="VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1491 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1492 <member optional="true"><type>VkWin32SurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1493 <member><type>HINSTANCE</type> <name>hinstance</name></member>
1494 <member><type>HWND</type> <name>hwnd</name></member>
1495 </type>
1496 <type category="struct" name="VkXlibSurfaceCreateInfoKHR">
1497 <member values="VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1498 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1499 <member optional="true"><type>VkXlibSurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1500 <member noautovalidity="true"><type>Display</type>* <name>dpy</name></member>
1501 <member><type>Window</type> <name>window</name></member>
1502 </type>
1503 <type category="struct" name="VkXcbSurfaceCreateInfoKHR">
1504 <member values="VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1505 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1506 <member optional="true"><type>VkXcbSurfaceCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1507 <member noautovalidity="true"><type>xcb_connection_t</type>* <name>connection</name></member>
1508 <member><type>xcb_window_t</type> <name>window</name></member>
1509 </type>
1510 <type category="struct" name="VkSurfaceFormatKHR" returnedonly="true">
1511 <member><type>VkFormat</type> <name>format</name></member> <!-- Supported pair of rendering format -->
1512 <member><type>VkColorSpaceKHR</type> <name>colorSpace</name></member> <!-- and color space for the surface -->
1513 </type>
1514 <type category="struct" name="VkSwapchainCreateInfoKHR">
1515 <member values="VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1516 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1517 <member optional="true"><type>VkSwapchainCreateFlagsKHR</type> <name>flags</name></member> <!-- Reserved -->
1518 <member><type>VkSurfaceKHR</type> <name>surface</name></member> <!-- The swapchain's target surface -->
1519 <member><type>uint32_t</type> <name>minImageCount</name></member> <!-- Minimum number of presentation images the application needs -->
1520 <member><type>VkFormat</type> <name>imageFormat</name></member> <!-- Format of the presentation images -->
1521 <member><type>VkColorSpaceKHR</type> <name>imageColorSpace</name></member> <!-- Colorspace of the presentation images -->
1522 <member><type>VkExtent2D</type> <name>imageExtent</name></member> <!-- Dimensions of the presentation images -->
1523 <member><type>uint32_t</type> <name>imageArrayLayers</name></member> <!-- Determines the number of views for multiview/stereo presentation -->
1524 <member><type>VkImageUsageFlags</type> <name>imageUsage</name></member> <!-- Bits indicating how the presentation images will be used -->
1525 <member><type>VkSharingMode</type> <name>imageSharingMode</name></member> <!-- Sharing mode used for the presentation images -->
1526 <member optional="true"><type>uint32_t</type> <name>queueFamilyIndexCount</name></member> <!-- Number of queue families having access to the images in case of concurrent sharing mode -->
1527 <member noautovalidity="true" len="queueFamilyIndexCount">const <type>uint32_t</type>* <name>pQueueFamilyIndices</name></member> <!-- Array of queue family indices having access to the images in case of concurrent sharing mode -->
1528 <member><type>VkSurfaceTransformFlagBitsKHR</type> <name>preTransform</name></member> <!-- The transform, relative to the device's natural orientation, applied to the image content prior to presentation -->
1529 <member><type>VkCompositeAlphaFlagBitsKHR</type> <name>compositeAlpha</name></member> <!-- The alpha blending mode used when compositing this surface with other surfaces in the window system -->
1530 <member><type>VkPresentModeKHR</type> <name>presentMode</name></member> <!-- Which presentation mode to use for presents on this swap chain -->
1531 <member><type>VkBool32</type> <name>clipped</name></member> <!-- Specifies whether presentable images may be affected by window clip regions -->
1532 <member optional="true"><type>VkSwapchainKHR</type> <name>oldSwapchain</name></member> <!-- Existing swap chain to replace, if any -->
1533 </type>
1534 <type category="struct" name="VkPresentInfoKHR">
1535 <member values="VK_STRUCTURE_TYPE_PRESENT_INFO_KHR"><type>VkStructureType</type> <name>sType</name></member>
1536 <member validextensionstructs="VkDisplayPresentInfoKHR">const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1537 <member optional="true"><type>uint32_t</type> <name>waitSemaphoreCount</name></member> <!-- Number of semaphores to wait for before presenting -->
1538 <member optional="true" len="waitSemaphoreCount">const <type>VkSemaphore</type>* <name>pWaitSemaphores</name></member> <!-- Semaphores to wait for before presenting -->
1539 <member><type>uint32_t</type> <name>swapchainCount</name></member> <!-- Number of swap chains to present in this call -->
1540 <member len="swapchainCount">const <type>VkSwapchainKHR</type>* <name>pSwapchains</name></member> <!-- Swapchains to present an image from -->
1541 <member len="swapchainCount">const <type>uint32_t</type>* <name>pImageIndices</name></member> <!-- Indices of which swapchain images to present -->
1542 <member optional="true" len="swapchainCount"><type>VkResult</type>* <name>pResults</name></member> <!-- Optional (i.e. if non-NULL) VkResult for each swapchain -->
1543 </type>
1544 <type category="struct" name="VkDebugReportCallbackCreateInfoEXT">
1545 <member values="VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1546 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1547 <member><type>VkDebugReportFlagsEXT</type> <name>flags</name></member> <!-- Indicates which events call this callback-->
1548 <member><type>PFN_vkDebugReportCallbackEXT</type> <name>pfnCallback</name></member> <!-- Function pointer of a callback function-->
1549 <member optional="true"><type>void</type>* <name>pUserData</name></member> <!-- User data provided to callback function -->
1550 </type>
1551 <type category="struct" name="VkValidationFlagsEXT">
1552 <member><type>VkStructureType</type> <name>sType</name></member> <!-- Must be VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT -->
1553 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1554 <member><type>uint32_t</type> <name>disabledValidationCheckCount</name></member> <!-- Number of validation checks to disable -->
1555 <member len="disabledValidationCheckCount"><type>VkValidationCheckEXT</type>* <name>pDisabledValidationChecks</name></member> <!-- Validation checks to disable -->
1556 </type>
1557 <type category="struct" name="VkPipelineRasterizationStateRasterizationOrderAMD">
1558 <member values="VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD"><type>VkStructureType</type> <name>sType</name></member>
1559 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1560 <member><type>VkRasterizationOrderAMD</type> <name>rasterizationOrder</name></member> <!-- Rasterization order to use for the pipeline -->
1561 </type>
1562 <type category="struct" name="VkDebugMarkerObjectNameInfoEXT">
1563 <member values="VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1564 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1565 <member><type>VkDebugReportObjectTypeEXT</type> <name>objectType</name></member> <!-- The type of the object -->
1566 <member><type>uint64_t</type> <name>object</name></member> <!-- The handle of the object, cast to uint64_t -->
1567 <member len="null-terminated">const <type>char</type>* <name>pObjectName</name></member> <!-- Name to apply to the object -->
1568 </type>
1569 <type category="struct" name="VkDebugMarkerObjectTagInfoEXT">
1570 <member values="VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1571 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1572 <member><type>VkDebugReportObjectTypeEXT</type> <name>objectType</name></member> <!-- The type of the object -->
1573 <member><type>uint64_t</type> <name>object</name></member> <!-- The handle of the object, cast to uint64_t -->
1574 <member><type>uint64_t</type> <name>tagName</name></member> <!-- The name of the tag to set on the object -->
1575 <member><type>size_t</type> <name>tagSize</name></member> <!-- The length in bytes of the tag data -->
1576 <member len="tagSize">const <type>void</type>* <name>pTag</name></member> <!-- Tag data to attach to the object -->
1577 </type>
1578 <type category="struct" name="VkDebugMarkerMarkerInfoEXT">
1579 <member values="VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1580 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1581 <member len="null-terminated">const <type>char</type>* <name>pMarkerName</name></member> <!-- Name of the debug marker -->
1582 <member optional="true"><type>float</type> <name>color</name>[4]</member> <!-- Optional color for debug marker -->
1583 </type>
1584 <type category="struct" name="VkDedicatedAllocationImageCreateInfoNV">
1585 <member values="VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1586 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1587 <member><type>VkBool32</type> <name>dedicatedAllocation</name></member> <!-- Whether this image uses a dedicated allocation -->
1588 </type>
1589 <type category="struct" name="VkDedicatedAllocationBufferCreateInfoNV">
1590 <member values="VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1591 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1592 <member><type>VkBool32</type> <name>dedicatedAllocation</name></member> <!-- Whether this buffer uses a dedicated allocation -->
1593 </type>
1594 <type category="struct" name="VkDedicatedAllocationMemoryAllocateInfoNV">
1595 <member values="VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1596 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1597 <member optional="true"><type>VkImage</type> <name>image</name></member> <!-- Image that this allocation will be bound to -->
1598 <member optional="true"><type>VkBuffer</type> <name>buffer</name></member> <!-- Buffer that this allocation will be bound to -->
1599 </type>
1600 <type category="struct" name="VkExternalImageFormatPropertiesNV" returnedonly="true">
1601 <member><type>VkImageFormatProperties</type> <name>imageFormatProperties</name></member>
1602 <member optional="true"><type>VkExternalMemoryFeatureFlagsNV</type> <name>externalMemoryFeatures</name></member>
1603 <member optional="true"><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>exportFromImportedHandleTypes</name></member>
1604 <member optional="true"><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>compatibleHandleTypes</name></member>
1605 </type>
1606 <type category="struct" name="VkExternalMemoryImageCreateInfoNV">
1607 <member values="VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1608 <member>const <type>void</type>* <name>pNext</name></member>
1609 <member optional="true"><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>handleTypes</name></member>
1610 </type>
1611 <type category="struct" name="VkExportMemoryAllocateInfoNV">
1612 <member values="VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1613 <member>const <type>void</type>* <name>pNext</name></member>
1614 <member optional="true"><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>handleTypes</name></member>
1615 </type>
1616 <type category="struct" name="VkImportMemoryWin32HandleInfoNV">
1617 <member values="VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1618 <member>const <type>void</type>* <name>pNext</name></member>
1619 <member optional="true"><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>handleType</name></member>
1620 <member optional="true"><type>HANDLE</type> <name>handle</name></member>
1621 </type>
1622 <type category="struct" name="VkExportMemoryWin32HandleInfoNV">
1623 <member values="VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1624 <member>const <type>void</type>* <name>pNext</name></member>
1625 <member optional="true">const <type>SECURITY_ATTRIBUTES</type>* <name>pAttributes</name></member>
1626 <member optional="true"><type>DWORD</type> <name>dwAccess</name></member>
1627 </type>
1628 <type category="struct" name="VkWin32KeyedMutexAcquireReleaseInfoNV">
1629 <member values="VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV"><type>VkStructureType</type> <name>sType</name></member>
1630 <member>const <type>void</type>* <name>pNext</name></member>
1631 <member optional="true"><type>uint32_t</type> <name>acquireCount</name></member>
1632 <member len="acquireCount">const <type>VkDeviceMemory</type>* <name>pAcquireSyncs</name></member>
1633 <member len="acquireCount">const <type>uint64_t</type>* <name>pAcquireKeys</name></member>
1634 <member len="acquireCount">const <type>uint32_t</type>* <name>pAcquireTimeoutMilliseconds</name></member>
1635 <member optional="true"><type>uint32_t</type> <name>releaseCount</name></member>
1636 <member len="releaseCount">const <type>VkDeviceMemory</type>* <name>pReleaseSyncs</name></member>
1637 <member len="releaseCount">const <type>uint64_t</type>* <name>pReleaseKeys</name></member>
1638 </type>
1639
1640 <type category="struct" name="VkDeviceGeneratedCommandsFeaturesNVX">
1641 <member values="VK_STRUCTURE_TYPE_DEVICE_GENERATED_COMMANDS_FEATURES_NVX"><type>VkStructureType</type> <name>sType</name></member>
1642 <member>const <type>void</type>* <name>pNext</name></member>
1643 <member><type>VkBool32</type> <name>computeBindingPointSupport</name></member>
1644 </type>
1645 <type category="struct" name="VkDeviceGeneratedCommandsLimitsNVX">
1646 <member values="VK_STRUCTURE_TYPE_DEVICE_GENERATED_COMMANDS_LIMITS_NVX"><type>VkStructureType</type> <name>sType</name></member>
1647 <member>const <type>void</type>* <name>pNext</name></member>
1648 <member><type>uint32_t</type> <name>maxIndirectCommandsLayoutTokenCount</name></member>
1649 <member><type>uint32_t</type> <name>maxObjectEntryCounts</name></member>
1650 <member><type>uint32_t</type> <name>minSequenceCountBufferOffsetAlignment</name></member>
1651 <member><type>uint32_t</type> <name>minSequenceIndexBufferOffsetAlignment</name></member>
1652 <member><type>uint32_t</type> <name>minCommandsTokenBufferOffsetAlignment</name></member>
1653 </type>
1654 <type category="struct" name="VkIndirectCommandsTokenNVX">
1655 <member><type>VkIndirectCommandsTokenTypeNVX</type> <name>tokenType</name></member>
1656 <member><type>VkBuffer</type> <name>buffer</name></member> <!-- buffer containing tableEntries and additional data for indirectCommands -->
1657 <member><type>VkDeviceSize</type> <name>offset</name></member> <!-- offset from the base address of the buffer -->
1658 </type>
1659 <type category="struct" name="VkIndirectCommandsLayoutTokenNVX">
1660 <member><type>VkIndirectCommandsTokenTypeNVX</type> <name>tokenType</name></member>
1661 <member><type>uint32_t</type> <name>bindingUnit</name></member> <!-- Binding unit for vertex attribute / descriptor set, offset for pushconstants -->
1662 <member><type>uint32_t</type> <name>dynamicCount</name></member> <!-- Number of variable dynamic values for descriptor set / push constants -->
1663 <member><type>uint32_t</type> <name>divisor</name></member> <!-- Rate the which the array is advanced per element (must be power of 2, minimum 1) -->
1664 </type>
1665 <type category="struct" name="VkIndirectCommandsLayoutCreateInfoNVX">
1666 <member values="VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NVX"><type>VkStructureType</type> <name>sType</name></member>
1667 <member>const <type>void</type>* <name>pNext</name></member>
1668 <member><type>VkPipelineBindPoint</type> <name>pipelineBindPoint</name></member>
1669 <member><type>VkIndirectCommandsLayoutUsageFlagsNVX</type> <name>flags</name></member>
1670 <member><type>uint32_t</type> <name>tokenCount</name></member>
1671 <member len="tokenCount">const <type>VkIndirectCommandsLayoutTokenNVX</type>* <name>pTokens</name></member>
1672 </type>
1673 <type category="struct" name="VkCmdProcessCommandsInfoNVX">
1674 <member values="VK_STRUCTURE_TYPE_CMD_PROCESS_COMMANDS_INFO_NVX"><type>VkStructureType</type> <name>sType</name></member>
1675 <member>const <type>void</type>* <name>pNext</name></member>
1676 <member externsync="true"><type>VkObjectTableNVX</type> <name>objectTable</name></member>
1677 <member><type>VkIndirectCommandsLayoutNVX</type> <name>indirectCommandsLayout</name></member>
1678 <member><type>uint32_t</type> <name>indirectCommandsTokenCount</name></member>
1679 <member len="indirectCommandsTokenCount">const <type>VkIndirectCommandsTokenNVX</type>* <name>pIndirectCommandsTokens</name></member>
1680 <member><type>uint32_t</type> <name>maxSequencesCount</name></member>
1681 <member optional="true" externsync="true"><type>VkCommandBuffer</type> <name>targetCommandBuffer</name></member>
1682 <member optional="true"><type>VkBuffer</type> <name>sequencesCountBuffer</name></member>
1683 <member optional="true"><type>VkDeviceSize</type> <name>sequencesCountOffset</name></member>
1684 <member optional="true"><type>VkBuffer</type> <name>sequencesIndexBuffer</name></member>
1685 <member optional="true"><type>VkDeviceSize</type> <name>sequencesIndexOffset</name></member>
1686 </type>
1687 <type category="struct" name="VkCmdReserveSpaceForCommandsInfoNVX">
1688 <member values="VK_STRUCTURE_TYPE_CMD_RESERVE_SPACE_FOR_COMMANDS_INFO_NVX"><type>VkStructureType</type> <name>sType</name></member>
1689 <member>const <type>void</type>* <name>pNext</name></member>
1690 <member externsync="true"><type>VkObjectTableNVX</type> <name>objectTable</name></member>
1691 <member><type>VkIndirectCommandsLayoutNVX</type> <name>indirectCommandsLayout</name></member>
1692 <member><type>uint32_t</type> <name>maxSequencesCount</name></member>
1693 </type>
1694 <type category="struct" name="VkObjectTableCreateInfoNVX">
1695 <member values="VK_STRUCTURE_TYPE_OBJECT_TABLE_CREATE_INFO_NVX"><type>VkStructureType</type> <name>sType</name></member>
1696 <member>const <type>void</type>* <name>pNext</name></member>
1697 <member><type>uint32_t</type> <name>objectCount</name></member>
1698 <member len="objectCount">const <type>VkObjectEntryTypeNVX</type>* <name>pObjectEntryTypes</name></member>
1699 <member len="objectCount">const <type>uint32_t</type>* <name>pObjectEntryCounts</name></member>
1700 <member len="objectCount">const <type>VkObjectEntryUsageFlagsNVX</type>* <name>pObjectEntryUsageFlags</name></member>
1701
1702 <member><type>uint32_t</type> <name>maxUniformBuffersPerDescriptor</name></member>
1703 <member><type>uint32_t</type> <name>maxStorageBuffersPerDescriptor</name></member>
1704 <member><type>uint32_t</type> <name>maxStorageImagesPerDescriptor</name></member>
1705 <member><type>uint32_t</type> <name>maxSampledImagesPerDescriptor</name></member>
1706 <member><type>uint32_t</type> <name>maxPipelineLayouts</name></member>
1707 </type>
1708 <type category="struct" name="VkObjectTableEntryNVX">
1709 <member><type>VkObjectEntryTypeNVX</type> <name>type</name></member>
1710 <member><type>VkObjectEntryUsageFlagsNVX</type> <name>flags</name></member>
1711 </type>
1712 <type category="struct" name="VkObjectTablePipelineEntryNVX">
1713 <member><type>VkObjectEntryTypeNVX</type> <name>type</name></member>
1714 <member><type>VkObjectEntryUsageFlagsNVX</type> <name>flags</name></member>
1715 <member><type>VkPipeline</type> <name>pipeline</name></member>
1716 </type>
1717 <type category="struct" name="VkObjectTableDescriptorSetEntryNVX">
1718 <member><type>VkObjectEntryTypeNVX</type> <name>type</name></member>
1719 <member><type>VkObjectEntryUsageFlagsNVX</type> <name>flags</name></member>
1720 <member><type>VkPipelineLayout</type> <name>pipelineLayout</name></member>
1721 <member><type>VkDescriptorSet</type> <name>descriptorSet</name></member>
1722 </type>
1723 <type category="struct" name="VkObjectTableVertexBufferEntryNVX">
1724 <member><type>VkObjectEntryTypeNVX</type> <name>type</name></member>
1725 <member><type>VkObjectEntryUsageFlagsNVX</type> <name>flags</name></member>
1726 <member><type>VkBuffer</type> <name>buffer</name></member>
1727 </type>
1728 <type category="struct" name="VkObjectTableIndexBufferEntryNVX">
1729 <member><type>VkObjectEntryTypeNVX</type> <name>type</name></member>
1730 <member><type>VkObjectEntryUsageFlagsNVX</type> <name>flags</name></member>
1731 <member><type>VkBuffer</type> <name>buffer</name></member>
1732 <member><type>VkIndexType</type> <name>indexType</name></member>
1733 </type>
1734 <type category="struct" name="VkObjectTablePushConstantEntryNVX">
1735 <member><type>VkObjectEntryTypeNVX</type> <name>type</name></member>
1736 <member><type>VkObjectEntryUsageFlagsNVX</type> <name>flags</name></member>
1737 <member><type>VkPipelineLayout</type> <name>pipelineLayout</name></member>
1738 <member><type>VkShaderStageFlags</type> <name>stageFlags</name></member>
1739 </type>
1740 <type category="struct" name="VkPhysicalDeviceFeatures2KHR">
1741 <member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1742 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1743 <member><type>VkPhysicalDeviceFeatures</type> <name>features</name></member>
1744 </type>
1745 <type category="struct" name="VkPhysicalDeviceProperties2KHR" returnedonly="true">
1746 <member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1747 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1748 <member><type>VkPhysicalDeviceProperties</type> <name>properties</name></member>
1749 </type>
1750 <type category="struct" name="VkFormatProperties2KHR" returnedonly="true">
1751 <member values="VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1752 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1753 <member><type>VkFormatProperties</type> <name>formatProperties</name></member>
1754 </type>
1755 <type category="struct" name="VkImageFormatProperties2KHR" returnedonly="true">
1756 <member values="VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1757 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1758 <member><type>VkImageFormatProperties</type> <name>imageFormatProperties</name></member>
1759 </type>
1760 <type category="struct" name="VkPhysicalDeviceImageFormatInfo2KHR">
1761 <member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1762 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1763 <member><type>VkFormat</type> <name>format</name></member>
1764 <member><type>VkImageType</type> <name>type</name></member>
1765 <member><type>VkImageTiling</type> <name>tiling</name></member>
1766 <member><type>VkImageUsageFlags</type> <name>usage</name></member>
1767 <member optional="true"><type>VkImageCreateFlags</type> <name>flags</name></member>
1768 </type>
1769 <type category="struct" name="VkQueueFamilyProperties2KHR" returnedonly="true">
1770 <member values="VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1771 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1772 <member><type>VkQueueFamilyProperties</type> <name>queueFamilyProperties</name></member>
1773 </type>
1774 <type category="struct" name="VkPhysicalDeviceMemoryProperties2KHR" returnedonly="true">
1775 <member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1776 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1777 <member><type>VkPhysicalDeviceMemoryProperties</type> <name>memoryProperties</name></member>
1778 </type>
1779 <type category="struct" name="VkSparseImageFormatProperties2KHR" returnedonly="true">
1780 <member values="VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1781 <member><type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1782 <member><type>VkSparseImageFormatProperties</type> <name>properties</name></member>
1783 </type>
1784 <type category="struct" name="VkPhysicalDeviceSparseImageFormatInfo2KHR">
1785 <member values="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2_KHR"><type>VkStructureType</type> <name>sType</name></member>
1786 <member>const <type>void</type>* <name>pNext</name></member> <!-- Pointer to next structure -->
1787 <member><type>VkFormat</type> <name>format</name></member>
1788 <member><type>VkImageType</type> <name>type</name></member>
1789 <member><type>VkSampleCountFlagBits</type> <name>samples</name></member>
1790 <member><type>VkImageUsageFlags</type> <name>usage</name></member>
1791 <member><type>VkImageTiling</type> <name>tiling</name></member>
1792 </type>
1793 <type category="struct" name="VkSurfaceCapabilities2EXT" returnedonly="true">
1794 <member values="VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES2_EXT"><type>VkStructureType</type> <name>sType</name></member>
1795 <member><type>void</type>* <name>pNext</name></member>
1796 <member><type>uint32_t</type> <name>minImageCount</name></member> <!-- Supported minimum number of images for the surface -->
1797 <member><type>uint32_t</type> <name>maxImageCount</name></member> <!-- Supported maximum number of images for the surface, 0 for unlimited -->
1798 <member><type>VkExtent2D</type> <name>currentExtent</name></member> <!-- Current image width and height for the surface, (0, 0) if undefined -->
1799 <member><type>VkExtent2D</type> <name>minImageExtent</name></member> <!-- Supported minimum image width and height for the surface -->
1800 <member><type>VkExtent2D</type> <name>maxImageExtent</name></member> <!-- Supported maximum image width and height for the surface -->
1801 <member><type>uint32_t</type> <name>maxImageArrayLayers</name></member> <!-- Supported maximum number of image layers for the surface -->
1802 <member optional="true"><type>VkSurfaceTransformFlagsKHR</type> <name>supportedTransforms</name></member> <!-- 1 or more bits representing the transforms supported -->
1803 <member><type>VkSurfaceTransformFlagBitsKHR</type> <name>currentTransform</name></member> <!-- The surface's current transform relative to the device's natural orientation -->
1804 <member optional="true"><type>VkCompositeAlphaFlagsKHR</type> <name>supportedCompositeAlpha</name></member> <!-- 1 or more bits representing the alpha compositing modes supported -->
1805 <member optional="true"><type>VkImageUsageFlags</type> <name>supportedUsageFlags</name></member> <!-- Supported image usage flags for the surface -->
1806 <member optional="true"><type>VkSurfaceCounterFlagsEXT</type> <name>supportedSurfaceCounters</name></member>
1807 </type>
1808 <type category="struct" name="VkDisplayPowerInfoEXT">
1809 <member values="VK_STRUCTURE_TYPE_DISPLAY_POWER_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1810 <member>const <type>void</type>* <name>pNext</name></member>
1811 <member><type>VkDisplayPowerStateEXT</type> <name>powerState</name></member>
1812 </type>
1813 <type category="struct" name="VkDeviceEventInfoEXT">
1814 <member values="VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1815 <member>const <type>void</type>* <name>pNext</name></member>
1816 <member><type>VkDeviceEventTypeEXT</type> <name>deviceEvent</name></member>
1817 </type>
1818 <type category="struct" name="VkDisplayEventInfoEXT">
1819 <member values="VK_STRUCTURE_TYPE_DISPLAY_EVENT_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1820 <member>const <type>void</type>* <name>pNext</name></member>
1821 <member><type>VkDisplayEventTypeEXT</type> <name>displayEvent</name></member>
1822 </type>
1823 <type category="struct" name="VkSwapchainCounterCreateInfoEXT">
1824 <member values="VK_STRUCTURE_TYPE_SWAPCHAIN_COUNTER_CREATE_INFO_EXT"><type>VkStructureType</type> <name>sType</name></member>
1825 <member>const <type>void</type>* <name>pNext</name></member>
1826 <member optional="true"><type>VkSurfaceCounterFlagsEXT</type> <name>surfaceCounters</name></member>
1827 </type>
1828 </types>
1829
1830 <!-- SECTION: Vulkan enumerant (token) definitions. -->
1831
1832 <enums name="API Constants" comment="Misc. hardcoded constants - not an enumerated type">
1833 <!-- This is part of the header boilerplate -->
1834 <enum value="256" name="VK_MAX_PHYSICAL_DEVICE_NAME_SIZE"/>
1835 <enum value="16" name="VK_UUID_SIZE"/>
1836 <enum value="256" name="VK_MAX_EXTENSION_NAME_SIZE"/>
1837 <enum value="256" name="VK_MAX_DESCRIPTION_SIZE"/>
1838 <enum value="32" name="VK_MAX_MEMORY_TYPES"/>
1839 <enum value="16" name="VK_MAX_MEMORY_HEAPS"/> <!-- The maximum number of unique memory heaps, each of which supporting 1 or more memory types. -->
1840 <enum value="1000.0f" name="VK_LOD_CLAMP_NONE"/>
1841 <enum value="(~0U)" name="VK_REMAINING_MIP_LEVELS"/>
1842 <enum value="(~0U)" name="VK_REMAINING_ARRAY_LAYERS"/>
1843 <enum value="(~0ULL)" name="VK_WHOLE_SIZE"/>
1844 <enum value="(~0U)" name="VK_ATTACHMENT_UNUSED"/>
1845 <enum value="1" name="VK_TRUE"/>
1846 <enum value="0" name="VK_FALSE"/>
1847 <enum value="(~0U)" name="VK_QUEUE_FAMILY_IGNORED"/>
1848 <enum value="(~0U)" name="VK_SUBPASS_EXTERNAL"/>
1849 </enums>
1850
1851 <!-- Unlike OpenGL, most tokens in Vulkan are actual typed enumerants in
1852 their own numeric namespaces. The "name" attribute is the C enum
1853 type name, and is pulled in from a <type> definition above
1854 (slightly clunky, but retains the type / enum distinction). "type"
1855 attributes of "enum" or "bitmask" indicate that these values should
1856 be generated inside an appropriate definition. -->
1857
1858 <enums name="VkImageLayout" type="enum">
1859 <enum value="0" name="VK_IMAGE_LAYOUT_UNDEFINED" comment="Implicit layout an image is when its contents are undefined due to various reasons (e.g. right after creation)"/>
1860 <enum value="1" name="VK_IMAGE_LAYOUT_GENERAL" comment="General layout when image can be used for any kind of access"/>
1861 <enum value="2" name="VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL" comment="Optimal layout when image is only used for color attachment read/write"/>
1862 <enum value="3" name="VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL" comment="Optimal layout when image is only used for depth/stencil attachment read/write"/>
1863 <enum value="4" name="VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL" comment="Optimal layout when image is used for read only depth/stencil attachment and shader access"/>
1864 <enum value="5" name="VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL" comment="Optimal layout when image is used for read only shader access"/>
1865 <enum value="6" name="VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL" comment="Optimal layout when image is used only as source of transfer operations"/>
1866 <enum value="7" name="VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL" comment="Optimal layout when image is used only as destination of transfer operations"/>
1867 <enum value="8" name="VK_IMAGE_LAYOUT_PREINITIALIZED" comment="Initial layout used when the data is populated by the CPU"/>
1868 </enums>
1869 <enums name="VkAttachmentLoadOp" type="enum">
1870 <enum value="0" name="VK_ATTACHMENT_LOAD_OP_LOAD"/>
1871 <enum value="1" name="VK_ATTACHMENT_LOAD_OP_CLEAR"/>
1872 <enum value="2" name="VK_ATTACHMENT_LOAD_OP_DONT_CARE"/>
1873 </enums>
1874 <enums name="VkAttachmentStoreOp" type="enum">
1875 <enum value="0" name="VK_ATTACHMENT_STORE_OP_STORE"/>
1876 <enum value="1" name="VK_ATTACHMENT_STORE_OP_DONT_CARE"/>
1877 </enums>
1878 <enums name="VkImageType" type="enum">
1879 <enum value="0" name="VK_IMAGE_TYPE_1D"/>
1880 <enum value="1" name="VK_IMAGE_TYPE_2D"/>
1881 <enum value="2" name="VK_IMAGE_TYPE_3D"/>
1882 </enums>
1883 <enums name="VkImageTiling" type="enum">
1884 <enum value="0" name="VK_IMAGE_TILING_OPTIMAL"/>
1885 <enum value="1" name="VK_IMAGE_TILING_LINEAR"/>
1886 </enums>
1887 <enums name="VkImageViewType" type="enum">
1888 <enum value="0" name="VK_IMAGE_VIEW_TYPE_1D"/>
1889 <enum value="1" name="VK_IMAGE_VIEW_TYPE_2D"/>
1890 <enum value="2" name="VK_IMAGE_VIEW_TYPE_3D"/>
1891 <enum value="3" name="VK_IMAGE_VIEW_TYPE_CUBE"/>
1892 <enum value="4" name="VK_IMAGE_VIEW_TYPE_1D_ARRAY"/>
1893 <enum value="5" name="VK_IMAGE_VIEW_TYPE_2D_ARRAY"/>
1894 <enum value="6" name="VK_IMAGE_VIEW_TYPE_CUBE_ARRAY"/>
1895 </enums>
1896 <enums name="VkCommandBufferLevel" type="enum">
1897 <enum value="0" name="VK_COMMAND_BUFFER_LEVEL_PRIMARY"/>
1898 <enum value="1" name="VK_COMMAND_BUFFER_LEVEL_SECONDARY"/>
1899 </enums>
1900 <enums name="VkComponentSwizzle" type="enum">
1901 <enum value="0" name="VK_COMPONENT_SWIZZLE_IDENTITY"/>
1902 <enum value="1" name="VK_COMPONENT_SWIZZLE_ZERO"/>
1903 <enum value="2" name="VK_COMPONENT_SWIZZLE_ONE"/>
1904 <enum value="3" name="VK_COMPONENT_SWIZZLE_R"/>
1905 <enum value="4" name="VK_COMPONENT_SWIZZLE_G"/>
1906 <enum value="5" name="VK_COMPONENT_SWIZZLE_B"/>
1907 <enum value="6" name="VK_COMPONENT_SWIZZLE_A"/>
1908 </enums>
1909 <enums name="VkDescriptorType" type="enum">
1910 <enum value="0" name="VK_DESCRIPTOR_TYPE_SAMPLER"/>
1911 <enum value="1" name="VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER"/>
1912 <enum value="2" name="VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE"/>
1913 <enum value="3" name="VK_DESCRIPTOR_TYPE_STORAGE_IMAGE"/>
1914 <enum value="4" name="VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER"/>
1915 <enum value="5" name="VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER"/>
1916 <enum value="6" name="VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER"/>
1917 <enum value="7" name="VK_DESCRIPTOR_TYPE_STORAGE_BUFFER"/>
1918 <enum value="8" name="VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC"/>
1919 <enum value="9" name="VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC"/>
1920 <enum value="10" name="VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT"/>
1921 </enums>
1922 <enums name="VkQueryType" type="enum">
1923 <enum value="0" name="VK_QUERY_TYPE_OCCLUSION"/>
1924 <enum value="1" name="VK_QUERY_TYPE_PIPELINE_STATISTICS" comment="Optional"/>
1925 <enum value="2" name="VK_QUERY_TYPE_TIMESTAMP"/>
1926 </enums>
1927 <enums name="VkBorderColor" type="enum">
1928 <enum value="0" name="VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK"/>
1929 <enum value="1" name="VK_BORDER_COLOR_INT_TRANSPARENT_BLACK"/>
1930 <enum value="2" name="VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK"/>
1931 <enum value="3" name="VK_BORDER_COLOR_INT_OPAQUE_BLACK"/>
1932 <enum value="4" name="VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE"/>
1933 <enum value="5" name="VK_BORDER_COLOR_INT_OPAQUE_WHITE"/>
1934 </enums>
1935 <enums name="VkPipelineBindPoint" type="enum">
1936 <enum value="0" name="VK_PIPELINE_BIND_POINT_GRAPHICS"/>
1937 <enum value="1" name="VK_PIPELINE_BIND_POINT_COMPUTE"/>
1938 </enums>
1939 <enums name="VkPipelineCacheHeaderVersion" type="enum">
1940 <enum value="1" name="VK_PIPELINE_CACHE_HEADER_VERSION_ONE"/>
1941 </enums>
1942 <enums name="VkPrimitiveTopology" type="enum">
1943 <enum value="0" name="VK_PRIMITIVE_TOPOLOGY_POINT_LIST"/>
1944 <enum value="1" name="VK_PRIMITIVE_TOPOLOGY_LINE_LIST"/>
1945 <enum value="2" name="VK_PRIMITIVE_TOPOLOGY_LINE_STRIP"/>
1946 <enum value="3" name="VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST"/>
1947 <enum value="4" name="VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP"/>
1948 <enum value="5" name="VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN"/>
1949 <enum value="6" name="VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY"/>
1950 <enum value="7" name="VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY"/>
1951 <enum value="8" name="VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY"/>
1952 <enum value="9" name="VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY"/>
1953 <enum value="10" name="VK_PRIMITIVE_TOPOLOGY_PATCH_LIST"/>
1954 </enums>
1955 <enums name="VkSharingMode" type="enum">
1956 <enum value="0" name="VK_SHARING_MODE_EXCLUSIVE"/>
1957 <enum value="1" name="VK_SHARING_MODE_CONCURRENT"/>
1958 </enums>
1959 <enums name="VkIndexType" type="enum">
1960 <enum value="0" name="VK_INDEX_TYPE_UINT16"/>
1961 <enum value="1" name="VK_INDEX_TYPE_UINT32"/>
1962 </enums>
1963 <enums name="VkFilter" type="enum">
1964 <enum value="0" name="VK_FILTER_NEAREST"/>
1965 <enum value="1" name="VK_FILTER_LINEAR"/>
1966 </enums>
1967 <enums name="VkSamplerMipmapMode" type="enum">
1968 <enum value="0" name="VK_SAMPLER_MIPMAP_MODE_NEAREST" comment="Choose nearest mip level"/>
1969 <enum value="1" name="VK_SAMPLER_MIPMAP_MODE_LINEAR" comment="Linear filter between mip levels"/>
1970 </enums>
1971 <enums name="VkSamplerAddressMode" type="enum">
1972 <enum value="0" name="VK_SAMPLER_ADDRESS_MODE_REPEAT"/>
1973 <enum value="1" name="VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT"/>
1974 <enum value="2" name="VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE"/>
1975 <enum value="3" name="VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER"/>
1976 <!-- <enum value="4" name="VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE" comment="Reserved for VK_KHR_sampler_mirror_clamp_to_edge, do not alias!"/> -->
1977 </enums>
1978 <enums name="VkCompareOp" type="enum">
1979 <enum value="0" name="VK_COMPARE_OP_NEVER"/>
1980 <enum value="1" name="VK_COMPARE_OP_LESS"/>
1981 <enum value="2" name="VK_COMPARE_OP_EQUAL"/>
1982 <enum value="3" name="VK_COMPARE_OP_LESS_OR_EQUAL"/>
1983 <enum value="4" name="VK_COMPARE_OP_GREATER"/>
1984 <enum value="5" name="VK_COMPARE_OP_NOT_EQUAL"/>
1985 <enum value="6" name="VK_COMPARE_OP_GREATER_OR_EQUAL"/>
1986 <enum value="7" name="VK_COMPARE_OP_ALWAYS"/>
1987 </enums>
1988 <enums name="VkPolygonMode" type="enum">
1989 <enum value="0" name="VK_POLYGON_MODE_FILL"/>
1990 <enum value="1" name="VK_POLYGON_MODE_LINE"/>
1991 <enum value="2" name="VK_POLYGON_MODE_POINT"/>
1992 </enums>
1993 <enums name="VkCullModeFlagBits" type="bitmask">
1994 <enum value="0" name="VK_CULL_MODE_NONE"/>
1995 <enum bitpos="0" name="VK_CULL_MODE_FRONT_BIT"/>
1996 <enum bitpos="1" name="VK_CULL_MODE_BACK_BIT"/>
1997 <enum value="0x00000003" name="VK_CULL_MODE_FRONT_AND_BACK"/>
1998 </enums>
1999 <enums name="VkFrontFace" type="enum">
2000 <enum value="0" name="VK_FRONT_FACE_COUNTER_CLOCKWISE"/>
2001 <enum value="1" name="VK_FRONT_FACE_CLOCKWISE"/>
2002 </enums>
2003 <enums name="VkBlendFactor" type="enum">
2004 <enum value="0" name="VK_BLEND_FACTOR_ZERO"/>
2005 <enum value="1" name="VK_BLEND_FACTOR_ONE"/>
2006 <enum value="2" name="VK_BLEND_FACTOR_SRC_COLOR"/>
2007 <enum value="3" name="VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR"/>
2008 <enum value="4" name="VK_BLEND_FACTOR_DST_COLOR"/>
2009 <enum value="5" name="VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR"/>
2010 <enum value="6" name="VK_BLEND_FACTOR_SRC_ALPHA"/>
2011 <enum value="7" name="VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA"/>
2012 <enum value="8" name="VK_BLEND_FACTOR_DST_ALPHA"/>
2013 <enum value="9" name="VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA"/>
2014 <enum value="10" name="VK_BLEND_FACTOR_CONSTANT_COLOR"/>
2015 <enum value="11" name="VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR"/>
2016 <enum value="12" name="VK_BLEND_FACTOR_CONSTANT_ALPHA"/>
2017 <enum value="13" name="VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA"/>
2018 <enum value="14" name="VK_BLEND_FACTOR_SRC_ALPHA_SATURATE"/>
2019 <enum value="15" name="VK_BLEND_FACTOR_SRC1_COLOR"/>
2020 <enum value="16" name="VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR"/>
2021 <enum value="17" name="VK_BLEND_FACTOR_SRC1_ALPHA"/>
2022 <enum value="18" name="VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA"/>
2023 </enums>
2024 <enums name="VkBlendOp" type="enum">
2025 <enum value="0" name="VK_BLEND_OP_ADD"/>
2026 <enum value="1" name="VK_BLEND_OP_SUBTRACT"/>
2027 <enum value="2" name="VK_BLEND_OP_REVERSE_SUBTRACT"/>
2028 <enum value="3" name="VK_BLEND_OP_MIN"/>
2029 <enum value="4" name="VK_BLEND_OP_MAX"/>
2030 </enums>
2031 <enums name="VkStencilOp" type="enum">
2032 <enum value="0" name="VK_STENCIL_OP_KEEP"/>
2033 <enum value="1" name="VK_STENCIL_OP_ZERO"/>
2034 <enum value="2" name="VK_STENCIL_OP_REPLACE"/>
2035 <enum value="3" name="VK_STENCIL_OP_INCREMENT_AND_CLAMP"/>
2036 <enum value="4" name="VK_STENCIL_OP_DECREMENT_AND_CLAMP"/>
2037 <enum value="5" name="VK_STENCIL_OP_INVERT"/>
2038 <enum value="6" name="VK_STENCIL_OP_INCREMENT_AND_WRAP"/>
2039 <enum value="7" name="VK_STENCIL_OP_DECREMENT_AND_WRAP"/>
2040 </enums>
2041 <enums name="VkLogicOp" type="enum">
2042 <enum value="0" name="VK_LOGIC_OP_CLEAR"/>
2043 <enum value="1" name="VK_LOGIC_OP_AND"/>
2044 <enum value="2" name="VK_LOGIC_OP_AND_REVERSE"/>
2045 <enum value="3" name="VK_LOGIC_OP_COPY"/>
2046 <enum value="4" name="VK_LOGIC_OP_AND_INVERTED"/>
2047 <enum value="5" name="VK_LOGIC_OP_NO_OP"/>
2048 <enum value="6" name="VK_LOGIC_OP_XOR"/>
2049 <enum value="7" name="VK_LOGIC_OP_OR"/>
2050 <enum value="8" name="VK_LOGIC_OP_NOR"/>
2051 <enum value="9" name="VK_LOGIC_OP_EQUIVALENT"/>
2052 <enum value="10" name="VK_LOGIC_OP_INVERT"/>
2053 <enum value="11" name="VK_LOGIC_OP_OR_REVERSE"/>
2054 <enum value="12" name="VK_LOGIC_OP_COPY_INVERTED"/>
2055 <enum value="13" name="VK_LOGIC_OP_OR_INVERTED"/>
2056 <enum value="14" name="VK_LOGIC_OP_NAND"/>
2057 <enum value="15" name="VK_LOGIC_OP_SET"/>
2058 </enums>
2059 <enums name="VkInternalAllocationType" type="enum">
2060 <enum value="0" name="VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE"/>
2061 </enums>
2062 <enums name="VkSystemAllocationScope" type="enum">
2063 <enum value="0" name="VK_SYSTEM_ALLOCATION_SCOPE_COMMAND"/>
2064 <enum value="1" name="VK_SYSTEM_ALLOCATION_SCOPE_OBJECT"/>
2065 <enum value="2" name="VK_SYSTEM_ALLOCATION_SCOPE_CACHE"/>
2066 <enum value="3" name="VK_SYSTEM_ALLOCATION_SCOPE_DEVICE"/>
2067 <enum value="4" name="VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE"/>
2068 </enums>
2069 <enums name="VkPhysicalDeviceType" type="enum">
2070 <enum value="0" name="VK_PHYSICAL_DEVICE_TYPE_OTHER"/>
2071 <enum value="1" name="VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU"/>
2072 <enum value="2" name="VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU"/>
2073 <enum value="3" name="VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU"/>
2074 <enum value="4" name="VK_PHYSICAL_DEVICE_TYPE_CPU"/>
2075 </enums>
2076 <enums name="VkVertexInputRate" type="enum">
2077 <enum value="0" name="VK_VERTEX_INPUT_RATE_VERTEX"/>
2078 <enum value="1" name="VK_VERTEX_INPUT_RATE_INSTANCE"/>
2079 </enums>
2080 <enums name="VkFormat" type="enum" comment="Vulkan format definitions">
2081 <enum value="0" name="VK_FORMAT_UNDEFINED"/>
2082 <enum value="1" name="VK_FORMAT_R4G4_UNORM_PACK8"/>
2083 <enum value="2" name="VK_FORMAT_R4G4B4A4_UNORM_PACK16"/>
2084 <enum value="3" name="VK_FORMAT_B4G4R4A4_UNORM_PACK16"/>
2085 <enum value="4" name="VK_FORMAT_R5G6B5_UNORM_PACK16"/>
2086 <enum value="5" name="VK_FORMAT_B5G6R5_UNORM_PACK16"/>
2087 <enum value="6" name="VK_FORMAT_R5G5B5A1_UNORM_PACK16"/>
2088 <enum value="7" name="VK_FORMAT_B5G5R5A1_UNORM_PACK16"/>
2089 <enum value="8" name="VK_FORMAT_A1R5G5B5_UNORM_PACK16"/>
2090 <enum value="9" name="VK_FORMAT_R8_UNORM"/>
2091 <enum value="10" name="VK_FORMAT_R8_SNORM"/>
2092 <enum value="11" name="VK_FORMAT_R8_USCALED"/>
2093 <enum value="12" name="VK_FORMAT_R8_SSCALED"/>
2094 <enum value="13" name="VK_FORMAT_R8_UINT"/>
2095 <enum value="14" name="VK_FORMAT_R8_SINT"/>
2096 <enum value="15" name="VK_FORMAT_R8_SRGB"/>
2097 <enum value="16" name="VK_FORMAT_R8G8_UNORM"/>
2098 <enum value="17" name="VK_FORMAT_R8G8_SNORM"/>
2099 <enum value="18" name="VK_FORMAT_R8G8_USCALED"/>
2100 <enum value="19" name="VK_FORMAT_R8G8_SSCALED"/>
2101 <enum value="20" name="VK_FORMAT_R8G8_UINT"/>
2102 <enum value="21" name="VK_FORMAT_R8G8_SINT"/>
2103 <enum value="22" name="VK_FORMAT_R8G8_SRGB"/>
2104 <enum value="23" name="VK_FORMAT_R8G8B8_UNORM"/>
2105 <enum value="24" name="VK_FORMAT_R8G8B8_SNORM"/>
2106 <enum value="25" name="VK_FORMAT_R8G8B8_USCALED"/>
2107 <enum value="26" name="VK_FORMAT_R8G8B8_SSCALED"/>
2108 <enum value="27" name="VK_FORMAT_R8G8B8_UINT"/>
2109 <enum value="28" name="VK_FORMAT_R8G8B8_SINT"/>
2110 <enum value="29" name="VK_FORMAT_R8G8B8_SRGB"/>
2111 <enum value="30" name="VK_FORMAT_B8G8R8_UNORM"/>
2112 <enum value="31" name="VK_FORMAT_B8G8R8_SNORM"/>
2113 <enum value="32" name="VK_FORMAT_B8G8R8_USCALED"/>
2114 <enum value="33" name="VK_FORMAT_B8G8R8_SSCALED"/>
2115 <enum value="34" name="VK_FORMAT_B8G8R8_UINT"/>
2116 <enum value="35" name="VK_FORMAT_B8G8R8_SINT"/>
2117 <enum value="36" name="VK_FORMAT_B8G8R8_SRGB"/>
2118 <enum value="37" name="VK_FORMAT_R8G8B8A8_UNORM"/>
2119 <enum value="38" name="VK_FORMAT_R8G8B8A8_SNORM"/>
2120 <enum value="39" name="VK_FORMAT_R8G8B8A8_USCALED"/>
2121 <enum value="40" name="VK_FORMAT_R8G8B8A8_SSCALED"/>
2122 <enum value="41" name="VK_FORMAT_R8G8B8A8_UINT"/>
2123 <enum value="42" name="VK_FORMAT_R8G8B8A8_SINT"/>
2124 <enum value="43" name="VK_FORMAT_R8G8B8A8_SRGB"/>
2125 <enum value="44" name="VK_FORMAT_B8G8R8A8_UNORM"/>
2126 <enum value="45" name="VK_FORMAT_B8G8R8A8_SNORM"/>
2127 <enum value="46" name="VK_FORMAT_B8G8R8A8_USCALED"/>
2128 <enum value="47" name="VK_FORMAT_B8G8R8A8_SSCALED"/>
2129 <enum value="48" name="VK_FORMAT_B8G8R8A8_UINT"/>
2130 <enum value="49" name="VK_FORMAT_B8G8R8A8_SINT"/>
2131 <enum value="50" name="VK_FORMAT_B8G8R8A8_SRGB"/>
2132 <enum value="51" name="VK_FORMAT_A8B8G8R8_UNORM_PACK32"/>
2133 <enum value="52" name="VK_FORMAT_A8B8G8R8_SNORM_PACK32"/>
2134 <enum value="53" name="VK_FORMAT_A8B8G8R8_USCALED_PACK32"/>
2135 <enum value="54" name="VK_FORMAT_A8B8G8R8_SSCALED_PACK32"/>
2136 <enum value="55" name="VK_FORMAT_A8B8G8R8_UINT_PACK32"/>
2137 <enum value="56" name="VK_FORMAT_A8B8G8R8_SINT_PACK32"/>
2138 <enum value="57" name="VK_FORMAT_A8B8G8R8_SRGB_PACK32"/>
2139 <enum value="58" name="VK_FORMAT_A2R10G10B10_UNORM_PACK32"/>
2140 <enum value="59" name="VK_FORMAT_A2R10G10B10_SNORM_PACK32"/>
2141 <enum value="60" name="VK_FORMAT_A2R10G10B10_USCALED_PACK32"/>
2142 <enum value="61" name="VK_FORMAT_A2R10G10B10_SSCALED_PACK32"/>
2143 <enum value="62" name="VK_FORMAT_A2R10G10B10_UINT_PACK32"/>
2144 <enum value="63" name="VK_FORMAT_A2R10G10B10_SINT_PACK32"/>
2145 <enum value="64" name="VK_FORMAT_A2B10G10R10_UNORM_PACK32"/>
2146 <enum value="65" name="VK_FORMAT_A2B10G10R10_SNORM_PACK32"/>
2147 <enum value="66" name="VK_FORMAT_A2B10G10R10_USCALED_PACK32"/>
2148 <enum value="67" name="VK_FORMAT_A2B10G10R10_SSCALED_PACK32"/>
2149 <enum value="68" name="VK_FORMAT_A2B10G10R10_UINT_PACK32"/>
2150 <enum value="69" name="VK_FORMAT_A2B10G10R10_SINT_PACK32"/>
2151 <enum value="70" name="VK_FORMAT_R16_UNORM"/>
2152 <enum value="71" name="VK_FORMAT_R16_SNORM"/>
2153 <enum value="72" name="VK_FORMAT_R16_USCALED"/>
2154 <enum value="73" name="VK_FORMAT_R16_SSCALED"/>
2155 <enum value="74" name="VK_FORMAT_R16_UINT"/>
2156 <enum value="75" name="VK_FORMAT_R16_SINT"/>
2157 <enum value="76" name="VK_FORMAT_R16_SFLOAT"/>
2158 <enum value="77" name="VK_FORMAT_R16G16_UNORM"/>
2159 <enum value="78" name="VK_FORMAT_R16G16_SNORM"/>
2160 <enum value="79" name="VK_FORMAT_R16G16_USCALED"/>
2161 <enum value="80" name="VK_FORMAT_R16G16_SSCALED"/>
2162 <enum value="81" name="VK_FORMAT_R16G16_UINT"/>
2163 <enum value="82" name="VK_FORMAT_R16G16_SINT"/>
2164 <enum value="83" name="VK_FORMAT_R16G16_SFLOAT"/>
2165 <enum value="84" name="VK_FORMAT_R16G16B16_UNORM"/>
2166 <enum value="85" name="VK_FORMAT_R16G16B16_SNORM"/>
2167 <enum value="86" name="VK_FORMAT_R16G16B16_USCALED"/>
2168 <enum value="87" name="VK_FORMAT_R16G16B16_SSCALED"/>
2169 <enum value="88" name="VK_FORMAT_R16G16B16_UINT"/>
2170 <enum value="89" name="VK_FORMAT_R16G16B16_SINT"/>
2171 <enum value="90" name="VK_FORMAT_R16G16B16_SFLOAT"/>
2172 <enum value="91" name="VK_FORMAT_R16G16B16A16_UNORM"/>
2173 <enum value="92" name="VK_FORMAT_R16G16B16A16_SNORM"/>
2174 <enum value="93" name="VK_FORMAT_R16G16B16A16_USCALED"/>
2175 <enum value="94" name="VK_FORMAT_R16G16B16A16_SSCALED"/>
2176 <enum value="95" name="VK_FORMAT_R16G16B16A16_UINT"/>
2177 <enum value="96" name="VK_FORMAT_R16G16B16A16_SINT"/>
2178 <enum value="97" name="VK_FORMAT_R16G16B16A16_SFLOAT"/>
2179 <enum value="98" name="VK_FORMAT_R32_UINT"/>
2180 <enum value="99" name="VK_FORMAT_R32_SINT"/>
2181 <enum value="100" name="VK_FORMAT_R32_SFLOAT"/>
2182 <enum value="101" name="VK_FORMAT_R32G32_UINT"/>
2183 <enum value="102" name="VK_FORMAT_R32G32_SINT"/>
2184 <enum value="103" name="VK_FORMAT_R32G32_SFLOAT"/>
2185 <enum value="104" name="VK_FORMAT_R32G32B32_UINT"/>
2186 <enum value="105" name="VK_FORMAT_R32G32B32_SINT"/>
2187 <enum value="106" name="VK_FORMAT_R32G32B32_SFLOAT"/>
2188 <enum value="107" name="VK_FORMAT_R32G32B32A32_UINT"/>
2189 <enum value="108" name="VK_FORMAT_R32G32B32A32_SINT"/>
2190 <enum value="109" name="VK_FORMAT_R32G32B32A32_SFLOAT"/>
2191 <enum value="110" name="VK_FORMAT_R64_UINT"/>
2192 <enum value="111" name="VK_FORMAT_R64_SINT"/>
2193 <enum value="112" name="VK_FORMAT_R64_SFLOAT"/>
2194 <enum value="113" name="VK_FORMAT_R64G64_UINT"/>
2195 <enum value="114" name="VK_FORMAT_R64G64_SINT"/>
2196 <enum value="115" name="VK_FORMAT_R64G64_SFLOAT"/>
2197 <enum value="116" name="VK_FORMAT_R64G64B64_UINT"/>
2198 <enum value="117" name="VK_FORMAT_R64G64B64_SINT"/>
2199 <enum value="118" name="VK_FORMAT_R64G64B64_SFLOAT"/>
2200 <enum value="119" name="VK_FORMAT_R64G64B64A64_UINT"/>
2201 <enum value="120" name="VK_FORMAT_R64G64B64A64_SINT"/>
2202 <enum value="121" name="VK_FORMAT_R64G64B64A64_SFLOAT"/>
2203 <enum value="122" name="VK_FORMAT_B10G11R11_UFLOAT_PACK32"/>
2204 <enum value="123" name="VK_FORMAT_E5B9G9R9_UFLOAT_PACK32"/>
2205 <enum value="124" name="VK_FORMAT_D16_UNORM"/>
2206 <enum value="125" name="VK_FORMAT_X8_D24_UNORM_PACK32"/>
2207 <enum value="126" name="VK_FORMAT_D32_SFLOAT"/>
2208 <enum value="127" name="VK_FORMAT_S8_UINT"/>
2209 <enum value="128" name="VK_FORMAT_D16_UNORM_S8_UINT"/>
2210 <enum value="129" name="VK_FORMAT_D24_UNORM_S8_UINT"/>
2211 <enum value="130" name="VK_FORMAT_D32_SFLOAT_S8_UINT"/>
2212 <enum value="131" name="VK_FORMAT_BC1_RGB_UNORM_BLOCK"/>
2213 <enum value="132" name="VK_FORMAT_BC1_RGB_SRGB_BLOCK"/>
2214 <enum value="133" name="VK_FORMAT_BC1_RGBA_UNORM_BLOCK"/>
2215 <enum value="134" name="VK_FORMAT_BC1_RGBA_SRGB_BLOCK"/>
2216 <enum value="135" name="VK_FORMAT_BC2_UNORM_BLOCK"/>
2217 <enum value="136" name="VK_FORMAT_BC2_SRGB_BLOCK"/>
2218 <enum value="137" name="VK_FORMAT_BC3_UNORM_BLOCK"/>
2219 <enum value="138" name="VK_FORMAT_BC3_SRGB_BLOCK"/>
2220 <enum value="139" name="VK_FORMAT_BC4_UNORM_BLOCK"/>
2221 <enum value="140" name="VK_FORMAT_BC4_SNORM_BLOCK"/>
2222 <enum value="141" name="VK_FORMAT_BC5_UNORM_BLOCK"/>
2223 <enum value="142" name="VK_FORMAT_BC5_SNORM_BLOCK"/>
2224 <enum value="143" name="VK_FORMAT_BC6H_UFLOAT_BLOCK"/>
2225 <enum value="144" name="VK_FORMAT_BC6H_SFLOAT_BLOCK"/>
2226 <enum value="145" name="VK_FORMAT_BC7_UNORM_BLOCK"/>
2227 <enum value="146" name="VK_FORMAT_BC7_SRGB_BLOCK"/>
2228 <enum value="147" name="VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK"/>
2229 <enum value="148" name="VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK"/>
2230 <enum value="149" name="VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK"/>
2231 <enum value="150" name="VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK"/>
2232 <enum value="151" name="VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK"/>
2233 <enum value="152" name="VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK"/>
2234 <enum value="153" name="VK_FORMAT_EAC_R11_UNORM_BLOCK"/>
2235 <enum value="154" name="VK_FORMAT_EAC_R11_SNORM_BLOCK"/>
2236 <enum value="155" name="VK_FORMAT_EAC_R11G11_UNORM_BLOCK"/>
2237 <enum value="156" name="VK_FORMAT_EAC_R11G11_SNORM_BLOCK"/>
2238 <enum value="157" name="VK_FORMAT_ASTC_4x4_UNORM_BLOCK"/>
2239 <enum value="158" name="VK_FORMAT_ASTC_4x4_SRGB_BLOCK"/>
2240 <enum value="159" name="VK_FORMAT_ASTC_5x4_UNORM_BLOCK"/>
2241 <enum value="160" name="VK_FORMAT_ASTC_5x4_SRGB_BLOCK"/>
2242 <enum value="161" name="VK_FORMAT_ASTC_5x5_UNORM_BLOCK"/>
2243 <enum value="162" name="VK_FORMAT_ASTC_5x5_SRGB_BLOCK"/>
2244 <enum value="163" name="VK_FORMAT_ASTC_6x5_UNORM_BLOCK"/>
2245 <enum value="164" name="VK_FORMAT_ASTC_6x5_SRGB_BLOCK"/>
2246 <enum value="165" name="VK_FORMAT_ASTC_6x6_UNORM_BLOCK"/>
2247 <enum value="166" name="VK_FORMAT_ASTC_6x6_SRGB_BLOCK"/>
2248 <enum value="167" name="VK_FORMAT_ASTC_8x5_UNORM_BLOCK"/>
2249 <enum value="168" name="VK_FORMAT_ASTC_8x5_SRGB_BLOCK"/>
2250 <enum value="169" name="VK_FORMAT_ASTC_8x6_UNORM_BLOCK"/>
2251 <enum value="170" name="VK_FORMAT_ASTC_8x6_SRGB_BLOCK"/>
2252 <enum value="171" name="VK_FORMAT_ASTC_8x8_UNORM_BLOCK"/>
2253 <enum value="172" name="VK_FORMAT_ASTC_8x8_SRGB_BLOCK"/>
2254 <enum value="173" name="VK_FORMAT_ASTC_10x5_UNORM_BLOCK"/>
2255 <enum value="174" name="VK_FORMAT_ASTC_10x5_SRGB_BLOCK"/>
2256 <enum value="175" name="VK_FORMAT_ASTC_10x6_UNORM_BLOCK"/>
2257 <enum value="176" name="VK_FORMAT_ASTC_10x6_SRGB_BLOCK"/>
2258 <enum value="177" name="VK_FORMAT_ASTC_10x8_UNORM_BLOCK"/>
2259 <enum value="178" name="VK_FORMAT_ASTC_10x8_SRGB_BLOCK"/>
2260 <enum value="179" name="VK_FORMAT_ASTC_10x10_UNORM_BLOCK"/>
2261 <enum value="180" name="VK_FORMAT_ASTC_10x10_SRGB_BLOCK"/>
2262 <enum value="181" name="VK_FORMAT_ASTC_12x10_UNORM_BLOCK"/>
2263 <enum value="182" name="VK_FORMAT_ASTC_12x10_SRGB_BLOCK"/>
2264 <enum value="183" name="VK_FORMAT_ASTC_12x12_UNORM_BLOCK"/>
2265 <enum value="184" name="VK_FORMAT_ASTC_12x12_SRGB_BLOCK"/>
2266 </enums>
2267 <enums name="VkStructureType" type="enum" comment="Structure type enumerant">
2268 <enum value="0" name="VK_STRUCTURE_TYPE_APPLICATION_INFO"/>
2269 <enum value="1" name="VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO"/>
2270 <enum value="2" name="VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO"/>
2271 <enum value="3" name="VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO"/>
2272 <enum value="4" name="VK_STRUCTURE_TYPE_SUBMIT_INFO"/>
2273 <enum value="5" name="VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO"/>
2274 <enum value="6" name="VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE"/>
2275 <enum value="7" name="VK_STRUCTURE_TYPE_BIND_SPARSE_INFO"/>
2276 <enum value="8" name="VK_STRUCTURE_TYPE_FENCE_CREATE_INFO"/>
2277 <enum value="9" name="VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO"/>
2278 <enum value="10" name="VK_STRUCTURE_TYPE_EVENT_CREATE_INFO"/>
2279 <enum value="11" name="VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO"/>
2280 <enum value="12" name="VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO"/>
2281 <enum value="13" name="VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO"/>
2282 <enum value="14" name="VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO"/>
2283 <enum value="15" name="VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO"/>
2284 <enum value="16" name="VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO"/>
2285 <enum value="17" name="VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO"/>
2286 <enum value="18" name="VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO"/>
2287 <enum value="19" name="VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO"/>
2288 <enum value="20" name="VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO"/>
2289 <enum value="21" name="VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO"/>
2290 <enum value="22" name="VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO"/>
2291 <enum value="23" name="VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO"/>
2292 <enum value="24" name="VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO"/>
2293 <enum value="25" name="VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO"/>
2294 <enum value="26" name="VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO"/>
2295 <enum value="27" name="VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO"/>
2296 <enum value="28" name="VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO"/>
2297 <enum value="29" name="VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO"/>
2298 <enum value="30" name="VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO"/>
2299 <enum value="31" name="VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO"/>
2300 <enum value="32" name="VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO"/>
2301 <enum value="33" name="VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO"/>
2302 <enum value="34" name="VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO"/>
2303 <enum value="35" name="VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET"/>
2304 <enum value="36" name="VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET"/>
2305 <enum value="37" name="VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO"/>
2306 <enum value="38" name="VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO"/>
2307 <enum value="39" name="VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO"/>
2308 <enum value="40" name="VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO"/>
2309 <enum value="41" name="VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO"/>
2310 <enum value="42" name="VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO"/>
2311 <enum value="43" name="VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO"/>
2312 <enum value="44" name="VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER"/>
2313 <enum value="45" name="VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER"/>
2314 <enum value="46" name="VK_STRUCTURE_TYPE_MEMORY_BARRIER"/>
2315 <enum value="47" name="VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO"/> <!-- Reserved for internal use by the loader, layers, and ICDs -->
2316 <enum value="48" name="VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO"/> <!-- Reserved for internal use by the loader, layers, and ICDs -->
2317 </enums>
2318 <enums name="VkSubpassContents" type="enum">
2319 <enum value="0" name="VK_SUBPASS_CONTENTS_INLINE"/>
2320 <enum value="1" name="VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS"/>
2321 </enums>
2322 <enums name="VkResult" type="enum" comment="Error and return codes">
2323 <!-- Return codes for successful operation execution (positive values) -->
2324 <enum value="0" name="VK_SUCCESS" comment="Command completed successfully"/>
2325 <enum value="1" name="VK_NOT_READY" comment="A fence or query has not yet completed"/>
2326 <enum value="2" name="VK_TIMEOUT" comment="A wait operation has not completed in the specified time"/>
2327 <enum value="3" name="VK_EVENT_SET" comment="An event is signaled"/>
2328 <enum value="4" name="VK_EVENT_RESET" comment="An event is unsignaled"/>
2329 <enum value="5" name="VK_INCOMPLETE" comment="A return array was too small for the result"/>
2330 <!-- Error codes (negative values) -->
2331 <enum value="-1" name="VK_ERROR_OUT_OF_HOST_MEMORY" comment="A host memory allocation has failed"/>
2332 <enum value="-2" name="VK_ERROR_OUT_OF_DEVICE_MEMORY" comment="A device memory allocation has failed"/>
2333 <enum value="-3" name="VK_ERROR_INITIALIZATION_FAILED" comment="Initialization of a object has failed"/>
2334 <enum value="-4" name="VK_ERROR_DEVICE_LOST" comment="The logical device has been lost. See &lt;&lt;devsandqueues-lost-device&gt;&gt;"/>
2335 <enum value="-5" name="VK_ERROR_MEMORY_MAP_FAILED" comment="Mapping of a memory object has failed"/>
2336 <enum value="-6" name="VK_ERROR_LAYER_NOT_PRESENT" comment="Layer specified does not exist"/>
2337 <enum value="-7" name="VK_ERROR_EXTENSION_NOT_PRESENT" comment="Extension specified does not exist"/>
2338 <enum value="-8" name="VK_ERROR_FEATURE_NOT_PRESENT" comment="Requested feature is not available on this device"/>
2339 <enum value="-9" name="VK_ERROR_INCOMPATIBLE_DRIVER" comment="Unable to find a Vulkan driver"/>
2340 <enum value="-10" name="VK_ERROR_TOO_MANY_OBJECTS" comment="Too many objects of the type have already been created"/>
2341 <enum value="-11" name="VK_ERROR_FORMAT_NOT_SUPPORTED" comment="Requested format is not supported on this device"/>
2342 <enum value="-12" name="VK_ERROR_FRAGMENTED_POOL" comment="A requested pool allocation has failed due to fragmentation of the pool's memory"/>
2343 <unused start="-12"/>
2344 </enums>
2345 <enums name="VkDynamicState" type="enum">
2346 <enum value="0" name="VK_DYNAMIC_STATE_VIEWPORT"/>
2347 <enum value="1" name="VK_DYNAMIC_STATE_SCISSOR"/>
2348 <enum value="2" name="VK_DYNAMIC_STATE_LINE_WIDTH"/>
2349 <enum value="3" name="VK_DYNAMIC_STATE_DEPTH_BIAS"/>
2350 <enum value="4" name="VK_DYNAMIC_STATE_BLEND_CONSTANTS"/>
2351 <enum value="5" name="VK_DYNAMIC_STATE_DEPTH_BOUNDS"/>
2352 <enum value="6" name="VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK"/>
2353 <enum value="7" name="VK_DYNAMIC_STATE_STENCIL_WRITE_MASK"/>
2354 <enum value="8" name="VK_DYNAMIC_STATE_STENCIL_REFERENCE"/>
2355 </enums>
2356
2357 <!-- Flags -->
2358 <enums name="VkQueueFlagBits" type="bitmask">
2359 <enum bitpos="0" name="VK_QUEUE_GRAPHICS_BIT" comment="Queue supports graphics operations"/>
2360 <enum bitpos="1" name="VK_QUEUE_COMPUTE_BIT" comment="Queue supports compute operations"/>
2361 <enum bitpos="2" name="VK_QUEUE_TRANSFER_BIT" comment="Queue supports transfer operations"/>
2362 <enum bitpos="3" name="VK_QUEUE_SPARSE_BINDING_BIT" comment="Queue supports sparse resource memory management operations"/>
2363 </enums>
2364 <enums name="VkMemoryPropertyFlagBits" type="bitmask">
2365 <enum bitpos="0" name="VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT" comment="If otherwise stated, then allocate memory on device"/>
2366 <enum bitpos="1" name="VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT" comment="Memory is mappable by host"/>
2367 <enum bitpos="2" name="VK_MEMORY_PROPERTY_HOST_COHERENT_BIT" comment="Memory will have i/o coherency. If not set, application may need to use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to flush/invalidate host cache"/>
2368 <enum bitpos="3" name="VK_MEMORY_PROPERTY_HOST_CACHED_BIT" comment="Memory will be cached by the host"/>
2369 <enum bitpos="4" name="VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT" comment="Memory may be allocated by the driver when it is required"/>
2370 </enums>
2371 <enums name="VkMemoryHeapFlagBits" type="bitmask">
2372 <enum bitpos="0" name="VK_MEMORY_HEAP_DEVICE_LOCAL_BIT" comment="If set, heap represents device memory"/>
2373 </enums>
2374 <enums name="VkAccessFlagBits" type="bitmask">
2375 <enum bitpos="0" name="VK_ACCESS_INDIRECT_COMMAND_READ_BIT" comment="Controls coherency of indirect command reads"/>
2376 <enum bitpos="1" name="VK_ACCESS_INDEX_READ_BIT" comment="Controls coherency of index reads"/>
2377 <enum bitpos="2" name="VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT" comment="Controls coherency of vertex attribute reads"/>
2378 <enum bitpos="3" name="VK_ACCESS_UNIFORM_READ_BIT" comment="Controls coherency of uniform buffer reads"/>
2379 <enum bitpos="4" name="VK_ACCESS_INPUT_ATTACHMENT_READ_BIT" comment="Controls coherency of input attachment reads"/>
2380 <enum bitpos="5" name="VK_ACCESS_SHADER_READ_BIT" comment="Controls coherency of shader reads"/>
2381 <enum bitpos="6" name="VK_ACCESS_SHADER_WRITE_BIT" comment="Controls coherency of shader writes"/>
2382 <enum bitpos="7" name="VK_ACCESS_COLOR_ATTACHMENT_READ_BIT" comment="Controls coherency of color attachment reads"/>
2383 <enum bitpos="8" name="VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT" comment="Controls coherency of color attachment writes"/>
2384 <enum bitpos="9" name="VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT" comment="Controls coherency of depth/stencil attachment reads"/>
2385 <enum bitpos="10" name="VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT" comment="Controls coherency of depth/stencil attachment writes"/>
2386 <enum bitpos="11" name="VK_ACCESS_TRANSFER_READ_BIT" comment="Controls coherency of transfer reads"/>
2387 <enum bitpos="12" name="VK_ACCESS_TRANSFER_WRITE_BIT" comment="Controls coherency of transfer writes"/>
2388 <enum bitpos="13" name="VK_ACCESS_HOST_READ_BIT" comment="Controls coherency of host reads"/>
2389 <enum bitpos="14" name="VK_ACCESS_HOST_WRITE_BIT" comment="Controls coherency of host writes"/>
2390 <enum bitpos="15" name="VK_ACCESS_MEMORY_READ_BIT" comment="Controls coherency of memory reads"/>
2391 <enum bitpos="16" name="VK_ACCESS_MEMORY_WRITE_BIT" comment="Controls coherency of memory writes"/>
2392 </enums>
2393 <enums name="VkBufferUsageFlagBits" type="bitmask">
2394 <enum bitpos="0" name="VK_BUFFER_USAGE_TRANSFER_SRC_BIT" comment="Can be used as a source of transfer operations"/>
2395 <enum bitpos="1" name="VK_BUFFER_USAGE_TRANSFER_DST_BIT" comment="Can be used as a destination of transfer operations"/>
2396 <enum bitpos="2" name="VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT" comment="Can be used as TBO"/>
2397 <enum bitpos="3" name="VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT" comment="Can be used as IBO"/>
2398 <enum bitpos="4" name="VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT" comment="Can be used as UBO"/>
2399 <enum bitpos="5" name="VK_BUFFER_USAGE_STORAGE_BUFFER_BIT" comment="Can be used as SSBO"/>
2400 <enum bitpos="6" name="VK_BUFFER_USAGE_INDEX_BUFFER_BIT" comment="Can be used as source of fixed-function index fetch (index buffer)"/>
2401 <enum bitpos="7" name="VK_BUFFER_USAGE_VERTEX_BUFFER_BIT" comment="Can be used as source of fixed-function vertex fetch (VBO)"/>
2402 <enum bitpos="8" name="VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT" comment="Can be the source of indirect parameters (e.g. indirect buffer, parameter buffer)"/>
2403 </enums>
2404 <enums name="VkBufferCreateFlagBits" type="bitmask">
2405 <enum bitpos="0" name="VK_BUFFER_CREATE_SPARSE_BINDING_BIT" comment="Buffer should support sparse backing"/>
2406 <enum bitpos="1" name="VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT" comment="Buffer should support sparse backing with partial residency"/>
2407 <enum bitpos="2" name="VK_BUFFER_CREATE_SPARSE_ALIASED_BIT" comment="Buffer should support constent data access to physical memory ranges mapped into multiple locations of sparse buffers"/>
2408 </enums>
2409 <enums name="VkShaderStageFlagBits" type="bitmask">
2410 <enum bitpos="0" name="VK_SHADER_STAGE_VERTEX_BIT"/>
2411 <enum bitpos="1" name="VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT"/>
2412 <enum bitpos="2" name="VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT"/>
2413 <enum bitpos="3" name="VK_SHADER_STAGE_GEOMETRY_BIT"/>
2414 <enum bitpos="4" name="VK_SHADER_STAGE_FRAGMENT_BIT"/>
2415 <enum bitpos="5" name="VK_SHADER_STAGE_COMPUTE_BIT"/>
2416 <enum value="0x0000001F" name="VK_SHADER_STAGE_ALL_GRAPHICS"/>
2417 <enum value="0x7FFFFFFF" name="VK_SHADER_STAGE_ALL"/>
2418 </enums>
2419 <enums name="VkImageUsageFlagBits" type="bitmask">
2420 <enum bitpos="0" name="VK_IMAGE_USAGE_TRANSFER_SRC_BIT" comment="Can be used as a source of transfer operations"/>
2421 <enum bitpos="1" name="VK_IMAGE_USAGE_TRANSFER_DST_BIT" comment="Can be used as a destination of transfer operations"/>
2422 <enum bitpos="2" name="VK_IMAGE_USAGE_SAMPLED_BIT" comment="Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)"/>
2423 <enum bitpos="3" name="VK_IMAGE_USAGE_STORAGE_BIT" comment="Can be used as storage image (STORAGE_IMAGE descriptor type)"/>
2424 <enum bitpos="4" name="VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT" comment="Can be used as framebuffer color attachment"/>
2425 <enum bitpos="5" name="VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT" comment="Can be used as framebuffer depth/stencil attachment"/>
2426 <enum bitpos="6" name="VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT" comment="Image data not needed outside of rendering"/>
2427 <enum bitpos="7" name="VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT" comment="Can be used as framebuffer input attachment"/>
2428 </enums>
2429 <enums name="VkImageCreateFlagBits" type="bitmask">
2430 <enum bitpos="0" name="VK_IMAGE_CREATE_SPARSE_BINDING_BIT" comment="Image should support sparse backing"/>
2431 <enum bitpos="1" name="VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT" comment="Image should support sparse backing with partial residency"/>
2432 <enum bitpos="2" name="VK_IMAGE_CREATE_SPARSE_ALIASED_BIT" comment="Image should support constent data access to physical memory ranges mapped into multiple locations of sparse images"/>
2433 <enum bitpos="3" name="VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT" comment="Allows image views to have different format than the base image"/>
2434 <enum bitpos="4" name="VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT" comment="Allows creating image views with cube type from the created image"/>
2435 </enums>
2436 <enums name="VkPipelineCreateFlagBits" type="bitmask">
2437 <enum bitpos="0" name="VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT"/>
2438 <enum bitpos="1" name="VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT"/>
2439 <enum bitpos="2" name="VK_PIPELINE_CREATE_DERIVATIVE_BIT"/>
2440 </enums>
2441 <enums name="VkColorComponentFlagBits" type="bitmask">
2442 <enum bitpos="0" name="VK_COLOR_COMPONENT_R_BIT"/>
2443 <enum bitpos="1" name="VK_COLOR_COMPONENT_G_BIT"/>
2444 <enum bitpos="2" name="VK_COLOR_COMPONENT_B_BIT"/>
2445 <enum bitpos="3" name="VK_COLOR_COMPONENT_A_BIT"/>
2446 </enums>
2447 <enums name="VkFenceCreateFlagBits" type="bitmask">
2448 <enum bitpos="0" name="VK_FENCE_CREATE_SIGNALED_BIT"/>
2449 </enums>
2450 <enums name="VkFormatFeatureFlagBits" type="bitmask">
2451 <enum bitpos="0" name="VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT" comment="Format can be used for sampled images (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)"/>
2452 <enum bitpos="1" name="VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT" comment="Format can be used for storage images (STORAGE_IMAGE descriptor type)"/>
2453 <enum bitpos="2" name="VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT" comment="Format supports atomic operations in case it is used for storage images"/>
2454 <enum bitpos="3" name="VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT" comment="Format can be used for uniform texel buffers (TBOs)"/>
2455 <enum bitpos="4" name="VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT" comment="Format can be used for storage texel buffers (IBOs)"/>
2456 <enum bitpos="5" name="VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT" comment="Format supports atomic operations in case it is used for storage texel buffers"/>
2457 <enum bitpos="6" name="VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT" comment="Format can be used for vertex buffers (VBOs)"/>
2458 <enum bitpos="7" name="VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT" comment="Format can be used for color attachment images"/>
2459 <enum bitpos="8" name="VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT" comment="Format supports blending in case it is used for color attachment images"/>
2460 <enum bitpos="9" name="VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT" comment="Format can be used for depth/stencil attachment images"/>
2461 <enum bitpos="10" name="VK_FORMAT_FEATURE_BLIT_SRC_BIT" comment="Format can be used as the source image of blits with vkCmdBlitImage"/>
2462 <enum bitpos="11" name="VK_FORMAT_FEATURE_BLIT_DST_BIT" comment="Format can be used as the destination image of blits with vkCmdBlitImage"/>
2463 <enum bitpos="12" name="VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT" comment="Format can be filtered with VK_FILTER_LINEAR when being sampled"/>
2464 </enums>
2465 <enums name="VkQueryControlFlagBits" type="bitmask">
2466 <enum bitpos="0" name="VK_QUERY_CONTROL_PRECISE_BIT" comment="Require precise results to be collected by the query"/>
2467 </enums>
2468 <enums name="VkQueryResultFlagBits" type="bitmask">
2469 <enum bitpos="0" name="VK_QUERY_RESULT_64_BIT" comment="Results of the queries are written to the destination buffer as 64-bit values"/>
2470 <enum bitpos="1" name="VK_QUERY_RESULT_WAIT_BIT" comment="Results of the queries are waited on before proceeding with the result copy"/>
2471 <enum bitpos="2" name="VK_QUERY_RESULT_WITH_AVAILABILITY_BIT" comment="Besides the results of the query, the availability of the results is also written"/>
2472 <enum bitpos="3" name="VK_QUERY_RESULT_PARTIAL_BIT" comment="Copy the partial results of the query even if the final results are not available"/>
2473 </enums>
2474 <enums name="VkCommandBufferUsageFlagBits" type="bitmask">
2475 <enum bitpos="0" name="VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT"/>
2476 <enum bitpos="1" name="VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT"/>
2477 <enum bitpos="2" name="VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT" comment="Command buffer may be submitted/executed more than once simultaneously"/>
2478 </enums>
2479 <enums name="VkQueryPipelineStatisticFlagBits" type="bitmask">
2480 <enum bitpos="0" name="VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT" comment="Optional"/>
2481 <enum bitpos="1" name="VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT" comment="Optional"/>
2482 <enum bitpos="2" name="VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT" comment="Optional"/>
2483 <enum bitpos="3" name="VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT" comment="Optional"/>
2484 <enum bitpos="4" name="VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT" comment="Optional"/>
2485 <enum bitpos="5" name="VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT" comment="Optional"/>
2486 <enum bitpos="6" name="VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT" comment="Optional"/>
2487 <enum bitpos="7" name="VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT" comment="Optional"/>
2488 <enum bitpos="8" name="VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT" comment="Optional"/>
2489 <enum bitpos="9" name="VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT" comment="Optional"/>
2490 <enum bitpos="10" name="VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT" comment="Optional"/>
2491 </enums>
2492 <enums name="VkImageAspectFlagBits" type="bitmask">
2493 <enum bitpos="0" name="VK_IMAGE_ASPECT_COLOR_BIT"/>
2494 <enum bitpos="1" name="VK_IMAGE_ASPECT_DEPTH_BIT"/>
2495 <enum bitpos="2" name="VK_IMAGE_ASPECT_STENCIL_BIT"/>
2496 <enum bitpos="3" name="VK_IMAGE_ASPECT_METADATA_BIT"/>
2497 </enums>
2498 <enums name="VkSparseImageFormatFlagBits" type="bitmask">
2499 <enum bitpos="0" name="VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT" comment="Image uses a single mip tail region for all array layers"/>
2500 <enum bitpos="1" name="VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT" comment="Image requires mip level dimensions to be an integer multiple of the sparse image block dimensions for non-tail mip levels."/>
2501 <enum bitpos="2" name="VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT" comment="Image uses a non-standard sparse image block dimensions"/>
2502 </enums>
2503 <enums name="VkSparseMemoryBindFlagBits" type="bitmask">
2504 <enum bitpos="0" name="VK_SPARSE_MEMORY_BIND_METADATA_BIT" comment="Operation binds resource metadata to memory"/>
2505 </enums>
2506 <enums name="VkPipelineStageFlagBits" type="bitmask">
2507 <enum bitpos="0" name="VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT" comment="Before subsequent commands are processed"/>
2508 <enum bitpos="1" name="VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT" comment="Draw/DispatchIndirect command fetch"/>
2509 <enum bitpos="2" name="VK_PIPELINE_STAGE_VERTEX_INPUT_BIT" comment="Vertex/index fetch"/>
2510 <enum bitpos="3" name="VK_PIPELINE_STAGE_VERTEX_SHADER_BIT" comment="Vertex shading"/>
2511 <enum bitpos="4" name="VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT" comment="Tessellation control shading"/>
2512 <enum bitpos="5" name="VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT" comment="Tessellation evaluation shading"/>
2513 <enum bitpos="6" name="VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT" comment="Geometry shading"/>
2514 <enum bitpos="7" name="VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT" comment="Fragment shading"/>
2515 <enum bitpos="8" name="VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT" comment="Early fragment (depth and stencil) tests"/>
2516 <enum bitpos="9" name="VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT" comment="Late fragment (depth and stencil) tests"/>
2517 <enum bitpos="10" name="VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT" comment="Color attachment writes"/>
2518 <enum bitpos="11" name="VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT" comment="Compute shading"/>
2519 <enum bitpos="12" name="VK_PIPELINE_STAGE_TRANSFER_BIT" comment="Transfer/copy operations"/>
2520 <enum bitpos="13" name="VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT" comment="After previous commands have completed"/>
2521 <enum bitpos="14" name="VK_PIPELINE_STAGE_HOST_BIT" comment="Indicates host (CPU) is a source/sink of the dependency"/>
2522 <enum bitpos="15" name="VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT" comment="All stages of the graphics pipeline"/>
2523 <enum bitpos="16" name="VK_PIPELINE_STAGE_ALL_COMMANDS_BIT" comment="All stages supported on the queue"/>
2524 </enums>
2525 <enums name="VkCommandPoolCreateFlagBits" type="bitmask">
2526 <enum bitpos="0" name="VK_COMMAND_POOL_CREATE_TRANSIENT_BIT" comment="Command buffers have a short lifetime"/>
2527 <enum bitpos="1" name="VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT" comment="Command buffers may release their memory individually"/>
2528 </enums>
2529 <enums name="VkCommandPoolResetFlagBits" type="bitmask">
2530 <enum bitpos="0" name="VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT" comment="Release resources owned by the pool"/>
2531 </enums>
2532 <enums name="VkCommandBufferResetFlagBits" type="bitmask">
2533 <enum bitpos="0" name="VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT" comment="Release resources owned by the buffer"/>
2534 </enums>
2535 <enums name="VkSampleCountFlagBits" type="bitmask">
2536 <enum bitpos="0" name="VK_SAMPLE_COUNT_1_BIT" comment="Sample count 1 supported"/>
2537 <enum bitpos="1" name="VK_SAMPLE_COUNT_2_BIT" comment="Sample count 2 supported"/>
2538 <enum bitpos="2" name="VK_SAMPLE_COUNT_4_BIT" comment="Sample count 4 supported"/>
2539 <enum bitpos="3" name="VK_SAMPLE_COUNT_8_BIT" comment="Sample count 8 supported"/>
2540 <enum bitpos="4" name="VK_SAMPLE_COUNT_16_BIT" comment="Sample count 16 supported"/>
2541 <enum bitpos="5" name="VK_SAMPLE_COUNT_32_BIT" comment="Sample count 32 supported"/>
2542 <enum bitpos="6" name="VK_SAMPLE_COUNT_64_BIT" comment="Sample count 64 supported"/>
2543 </enums>
2544 <enums name="VkAttachmentDescriptionFlagBits" type="bitmask">
2545 <enum bitpos="0" name="VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT" comment="The attachment may alias physical memory of another attachment in the same render pass"/>
2546 </enums>
2547 <enums name="VkStencilFaceFlagBits" type="bitmask">
2548 <enum bitpos="0" name="VK_STENCIL_FACE_FRONT_BIT" comment="Front face"/>
2549 <enum bitpos="1" name="VK_STENCIL_FACE_BACK_BIT" comment="Back face"/>
2550 <enum value="0x00000003" name="VK_STENCIL_FRONT_AND_BACK" comment="Front and back faces"/>
2551 </enums>
2552 <enums name="VkDescriptorPoolCreateFlagBits" type="bitmask">
2553 <enum bitpos="0" name="VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT" comment="Descriptor sets may be freed individually"/>
2554 </enums>
2555 <enums name="VkDependencyFlagBits" type="bitmask">
2556 <enum bitpos="0" name="VK_DEPENDENCY_BY_REGION_BIT" comment="Dependency is per pixel region "/>
2557 </enums>
2558 <!-- WSI extensions -->
2559 <enums name="VkPresentModeKHR" type="enum">
2560 <enum value="0" name="VK_PRESENT_MODE_IMMEDIATE_KHR"/>
2561 <enum value="1" name="VK_PRESENT_MODE_MAILBOX_KHR"/>
2562 <enum value="2" name="VK_PRESENT_MODE_FIFO_KHR"/>
2563 <enum value="3" name="VK_PRESENT_MODE_FIFO_RELAXED_KHR"/>
2564 </enums>
2565 <enums name="VkColorSpaceKHR" type="enum">
2566 <enum value="0" name="VK_COLOR_SPACE_SRGB_NONLINEAR_KHR"/>
2567 </enums>
2568 <enums name="VkDisplayPlaneAlphaFlagBitsKHR" type="bitmask">
2569 <enum bitpos="0" name="VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR"/>
2570 <enum bitpos="1" name="VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR"/>
2571 <enum bitpos="2" name="VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR"/>
2572 <enum bitpos="3" name="VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR"/>
2573 </enums>
2574 <enums name="VkCompositeAlphaFlagBitsKHR" type="bitmask">
2575 <enum bitpos="0" name="VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR"/>
2576 <enum bitpos="1" name="VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR"/>
2577 <enum bitpos="2" name="VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR"/>
2578 <enum bitpos="3" name="VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR"/>
2579 </enums>
2580 <enums name="VkSurfaceTransformFlagBitsKHR" type="bitmask">
2581 <enum bitpos="0" name="VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR"/>
2582 <enum bitpos="1" name="VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR"/>
2583 <enum bitpos="2" name="VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR"/>
2584 <enum bitpos="3" name="VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR"/>
2585 <enum bitpos="4" name="VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR"/>
2586 <enum bitpos="5" name="VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR"/>
2587 <enum bitpos="6" name="VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR"/>
2588 <enum bitpos="7" name="VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR"/>
2589 <enum bitpos="8" name="VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR"/>
2590 </enums>
2591 <enums name="VkDebugReportFlagBitsEXT" type="bitmask">
2592 <enum bitpos="0" name="VK_DEBUG_REPORT_INFORMATION_BIT_EXT"/>
2593 <enum bitpos="1" name="VK_DEBUG_REPORT_WARNING_BIT_EXT"/>
2594 <enum bitpos="2" name="VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT"/>
2595 <enum bitpos="3" name="VK_DEBUG_REPORT_ERROR_BIT_EXT"/>
2596 <enum bitpos="4" name="VK_DEBUG_REPORT_DEBUG_BIT_EXT"/>
2597 </enums>
2598 <enums name="VkDebugReportObjectTypeEXT" type="enum">
2599 <enum value="0" name="VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT"/>
2600 <enum value="1" name="VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT"/>
2601 <enum value="2" name="VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT"/>
2602 <enum value="3" name="VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT"/>
2603 <enum value="4" name="VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT"/>
2604 <enum value="5" name="VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT"/>
2605 <enum value="6" name="VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT"/>
2606 <enum value="7" name="VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT"/>
2607 <enum value="8" name="VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT"/>
2608 <enum value="9" name="VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT"/>
2609 <enum value="10" name="VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT"/>
2610 <enum value="11" name="VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT"/>
2611 <enum value="12" name="VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT"/>
2612 <enum value="13" name="VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT"/>
2613 <enum value="14" name="VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT"/>
2614 <enum value="15" name="VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT"/>
2615 <enum value="16" name="VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT"/>
2616 <enum value="17" name="VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT"/>
2617 <enum value="18" name="VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT"/>
2618 <enum value="19" name="VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT"/>
2619 <enum value="20" name="VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT"/>
2620 <enum value="21" name="VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT"/>
2621 <enum value="22" name="VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT"/>
2622 <enum value="23" name="VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT"/>
2623 <enum value="24" name="VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT"/>
2624 <enum value="25" name="VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT"/>
2625 <enum value="26" name="VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT"/>
2626 <enum value="27" name="VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT"/>
2627 <enum value="28" name="VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT"/>
2628 <enum value="29" name="VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT"/>
2629 <enum value="30" name="VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT"/>
2630 <enum value="31" name="VK_DEBUG_REPORT_OBJECT_TYPE_OBJECT_TABLE_NVX_EXT"/>
2631 <enum value="32" name="VK_DEBUG_REPORT_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NVX_EXT"/>
2632 </enums>
2633 <enums name="VkDebugReportErrorEXT" type="enum">
2634 <enum value="0" name="VK_DEBUG_REPORT_ERROR_NONE_EXT"/> <!-- Used for INFO & other non-error messages -->
2635 <enum value="1" name="VK_DEBUG_REPORT_ERROR_CALLBACK_REF_EXT"/> <!-- Callbacks were not destroyed prior to calling DestroyInstance -->
2636 </enums>
2637 <enums name="VkRasterizationOrderAMD" type="enum">
2638 <enum value="0" name="VK_RASTERIZATION_ORDER_STRICT_AMD"/> <!-- Rasterization order strictly follows API order -->
2639 <enum value="1" name="VK_RASTERIZATION_ORDER_RELAXED_AMD"/> <!-- Rasterization order may not follow API order -->
2640 </enums>
2641 <enums name="VkExternalMemoryHandleTypeFlagBitsNV" type="bitmask">
2642 <enum bitpos="0" name="VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV"/>
2643 <enum bitpos="1" name="VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV"/>
2644 <enum bitpos="2" name="VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV"/>
2645 <enum bitpos="3" name="VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV"/>
2646 </enums>
2647 <enums name="VkExternalMemoryFeatureFlagBitsNV" type="bitmask">
2648 <enum bitpos="0" name="VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV"/>
2649 <enum bitpos="1" name="VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV"/>
2650 <enum bitpos="2" name="VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV"/>
2651 </enums>
2652 <enums name="VkValidationCheckEXT" type="enum">
2653 <enum value="0" name="VK_VALIDATION_CHECK_ALL_EXT"/>
2654 <!-- Placeholder for validation enums to be defined for VK_EXT_Validation_flags extension -->
2655 </enums>
2656 <enums name="VkIndirectCommandsLayoutUsageFlagBitsNVX" type="bitmask">
2657 <enum bitpos="0" name="VK_INDIRECT_COMMANDS_LAYOUT_USAGE_UNORDERED_SEQUENCES_BIT_NVX"/> <!-- sequences can be processed in implementation-dependent order -->
2658 <enum bitpos="1" name="VK_INDIRECT_COMMANDS_LAYOUT_USAGE_SPARSE_SEQUENCES_BIT_NVX"/> <!-- likely generated with a high difference in actual sequencesCount and maxSequencesCount -->
2659 <enum bitpos="2" name="VK_INDIRECT_COMMANDS_LAYOUT_USAGE_EMPTY_EXECUTIONS_BIT_NVX"/> <!-- likely to contain draw/dispatch calls that are zero-sized -->
2660 <enum bitpos="3" name="VK_INDIRECT_COMMANDS_LAYOUT_USAGE_INDEXED_SEQUENCES_BIT_NVX"/> <!-- custom sequence index permutation (32-bit) is provided -->
2661 </enums>
2662 <enums name="VkObjectEntryUsageFlagBitsNVX" type="bitmask">
2663 <enum bitpos="0" name="VK_OBJECT_ENTRY_USAGE_GRAPHICS_BIT_NVX"/>
2664 <enum bitpos="1" name="VK_OBJECT_ENTRY_USAGE_COMPUTE_BIT_NVX"/>
2665 </enums>
2666 <enums name="VkIndirectCommandsTokenTypeNVX" type="enum">
2667 <enum value="0" name="VK_INDIRECT_COMMANDS_TOKEN_PIPELINE_NVX"/> <!-- array of 32bit tableEntry in the object table -->
2668 <enum value="1" name="VK_INDIRECT_COMMANDS_TOKEN_DESCRIPTOR_SET_NVX"/> <!-- array of (32 bit tableEntry + variable count 32bit offsets) -->
2669 <enum value="2" name="VK_INDIRECT_COMMANDS_TOKEN_INDEX_BUFFER_NVX"/> <!-- array of (32 bit tableEntry + optional 32bit offset) -->
2670 <enum value="3" name="VK_INDIRECT_COMMANDS_TOKEN_VERTEX_BUFFER_NVX"/> <!-- array of (32 bit tableEntry + optional 32bit offset) -->
2671 <enum value="4" name="VK_INDIRECT_COMMANDS_TOKEN_PUSH_CONSTANT_NVX"/> <!-- array of (32 bit tableEntry + variable count 32bit values ) -->
2672 <enum value="5" name="VK_INDIRECT_COMMANDS_TOKEN_DRAW_INDEXED_NVX"/> <!-- array of VkDrawIndexedIndirectCommand -->
2673 <enum value="6" name="VK_INDIRECT_COMMANDS_TOKEN_DRAW_NVX"/> <!-- array of VkDrawIndirectCommand -->
2674 <enum value="7" name="VK_INDIRECT_COMMANDS_TOKEN_DISPATCH_NVX"/> <!-- array of VkDispatchIndirectCommand -->
2675 </enums>
2676 <enums name="VkObjectEntryTypeNVX" type="enum">
2677 <enum value="0" name="VK_OBJECT_ENTRY_DESCRIPTOR_SET_NVX"/>
2678 <enum value="1" name="VK_OBJECT_ENTRY_PIPELINE_NVX"/>
2679 <enum value="2" name="VK_OBJECT_ENTRY_INDEX_BUFFER_NVX"/>
2680 <enum value="3" name="VK_OBJECT_ENTRY_VERTEX_BUFFER_NVX"/>
2681 <enum value="4" name="VK_OBJECT_ENTRY_PUSH_CONSTANT_NVX"/>
2682 </enums>
2683 <enums name="VkSurfaceCounterFlagBitsEXT" type="bitmask">
2684 <enum bitpos="0" name="VK_SURFACE_COUNTER_VBLANK_EXT"/>
2685 </enums>
2686 <enums name="VkDisplayPowerStateEXT" type="enum">
2687 <enum value="0" name="VK_DISPLAY_POWER_STATE_OFF_EXT"/>
2688 <enum value="1" name="VK_DISPLAY_POWER_STATE_SUSPEND_EXT"/>
2689 <enum value="2" name="VK_DISPLAY_POWER_STATE_ON_EXT"/>
2690 </enums>
2691 <enums name="VkDeviceEventTypeEXT" type="enum">
2692 <enum value="0" name="VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT"/>
2693 </enums>
2694 <enums name="VkDisplayEventTypeEXT" type="enum">
2695 <enum value="0" name="VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT"/>
2696 </enums>
2697
2698 <!-- SECTION: Vulkan command definitions -->
2699 <commands>
2700 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INITIALIZATION_FAILED,VK_ERROR_LAYER_NOT_PRESENT,VK_ERROR_EXTENSION_NOT_PRESENT,VK_ERROR_INCOMPATIBLE_DRIVER">
2701 <proto><type>VkResult</type> <name>vkCreateInstance</name></proto>
2702 <param>const <type>VkInstanceCreateInfo</type>* <name>pCreateInfo</name></param>
2703 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2704 <param><type>VkInstance</type>* <name>pInstance</name></param>
2705 </command>
2706 <command>
2707 <proto><type>void</type> <name>vkDestroyInstance</name></proto>
2708 <param optional="true" externsync="true"><type>VkInstance</type> <name>instance</name></param>
2709 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2710 </command>
2711 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INITIALIZATION_FAILED">
2712 <proto><type>VkResult</type> <name>vkEnumeratePhysicalDevices</name></proto>
2713 <param><type>VkInstance</type> <name>instance</name></param>
2714 <param optional="false,true"><type>uint32_t</type>* <name>pPhysicalDeviceCount</name></param>
2715 <param optional="true" len="pPhysicalDeviceCount"><type>VkPhysicalDevice</type>* <name>pPhysicalDevices</name></param>
2716 </command>
2717 <command>
2718 <proto><type>PFN_vkVoidFunction</type> <name>vkGetDeviceProcAddr</name></proto>
2719 <param><type>VkDevice</type> <name>device</name></param>
2720 <param len="null-terminated">const <type>char</type>* <name>pName</name></param>
2721 </command>
2722 <command>
2723 <proto><type>PFN_vkVoidFunction</type> <name>vkGetInstanceProcAddr</name></proto>
2724 <param optional="true"><type>VkInstance</type> <name>instance</name></param>
2725 <param len="null-terminated">const <type>char</type>* <name>pName</name></param>
2726 </command>
2727 <command>
2728 <proto><type>void</type> <name>vkGetPhysicalDeviceProperties</name></proto>
2729 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2730 <param><type>VkPhysicalDeviceProperties</type>* <name>pProperties</name></param>
2731 </command>
2732 <command>
2733 <proto><type>void</type> <name>vkGetPhysicalDeviceQueueFamilyProperties</name></proto>
2734 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2735 <param optional="false,true"><type>uint32_t</type>* <name>pQueueFamilyPropertyCount</name></param>
2736 <param optional="true" len="pQueueFamilyPropertyCount"><type>VkQueueFamilyProperties</type>* <name>pQueueFamilyProperties</name></param>
2737 </command>
2738 <command>
2739 <proto><type>void</type> <name>vkGetPhysicalDeviceMemoryProperties</name></proto>
2740 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2741 <param><type>VkPhysicalDeviceMemoryProperties</type>* <name>pMemoryProperties</name></param>
2742 </command>
2743 <command>
2744 <proto><type>void</type> <name>vkGetPhysicalDeviceFeatures</name></proto>
2745 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2746 <param><type>VkPhysicalDeviceFeatures</type>* <name>pFeatures</name></param>
2747 </command>
2748 <command>
2749 <proto><type>void</type> <name>vkGetPhysicalDeviceFormatProperties</name></proto>
2750 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2751 <param><type>VkFormat</type> <name>format</name></param>
2752 <param><type>VkFormatProperties</type>* <name>pFormatProperties</name></param>
2753 </command>
2754 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_FORMAT_NOT_SUPPORTED">
2755 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceImageFormatProperties</name></proto>
2756 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2757 <param><type>VkFormat</type> <name>format</name></param>
2758 <param><type>VkImageType</type> <name>type</name></param>
2759 <param><type>VkImageTiling</type> <name>tiling</name></param>
2760 <param><type>VkImageUsageFlags</type> <name>usage</name></param>
2761 <param optional="true"><type>VkImageCreateFlags</type> <name>flags</name></param>
2762 <param><type>VkImageFormatProperties</type>* <name>pImageFormatProperties</name></param>
2763 </command>
2764 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INITIALIZATION_FAILED,VK_ERROR_EXTENSION_NOT_PRESENT,VK_ERROR_FEATURE_NOT_PRESENT,VK_ERROR_TOO_MANY_OBJECTS,VK_ERROR_DEVICE_LOST">
2765 <proto><type>VkResult</type> <name>vkCreateDevice</name></proto>
2766 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2767 <param>const <type>VkDeviceCreateInfo</type>* <name>pCreateInfo</name></param>
2768 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2769 <param><type>VkDevice</type>* <name>pDevice</name></param>
2770 </command>
2771 <command>
2772 <proto><type>void</type> <name>vkDestroyDevice</name></proto>
2773 <param optional="true" externsync="true"><type>VkDevice</type> <name>device</name></param>
2774 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2775 </command>
2776 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2777 <proto><type>VkResult</type> <name>vkEnumerateInstanceLayerProperties</name></proto>
2778 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
2779 <param optional="true" len="pPropertyCount"><type>VkLayerProperties</type>* <name>pProperties</name></param>
2780 </command>
2781 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_LAYER_NOT_PRESENT">
2782 <proto><type>VkResult</type> <name>vkEnumerateInstanceExtensionProperties</name></proto>
2783 <param optional="true" len="null-terminated">const <type>char</type>* <name>pLayerName</name></param>
2784 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
2785 <param optional="true" len="pPropertyCount"><type>VkExtensionProperties</type>* <name>pProperties</name></param>
2786 </command>
2787 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2788 <proto><type>VkResult</type> <name>vkEnumerateDeviceLayerProperties</name></proto>
2789 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2790 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
2791 <param optional="true" len="pPropertyCount"><type>VkLayerProperties</type>* <name>pProperties</name></param>
2792 </command>
2793 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_LAYER_NOT_PRESENT">
2794 <proto><type>VkResult</type> <name>vkEnumerateDeviceExtensionProperties</name></proto>
2795 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2796 <param optional="true" len="null-terminated">const <type>char</type>* <name>pLayerName</name></param>
2797 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
2798 <param optional="true" len="pPropertyCount"><type>VkExtensionProperties</type>* <name>pProperties</name></param>
2799 </command>
2800 <command>
2801 <proto><type>void</type> <name>vkGetDeviceQueue</name></proto>
2802 <param><type>VkDevice</type> <name>device</name></param>
2803 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
2804 <param><type>uint32_t</type> <name>queueIndex</name></param>
2805 <param><type>VkQueue</type>* <name>pQueue</name></param>
2806 </command>
2807 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2808 <proto><type>VkResult</type> <name>vkQueueSubmit</name></proto>
2809 <param externsync="true"><type>VkQueue</type> <name>queue</name></param>
2810 <param optional="true"><type>uint32_t</type> <name>submitCount</name></param>
2811 <param len="submitCount" externsync="pSubmits[].pWaitSemaphores[],pSubmits[].pSignalSemaphores[]">const <type>VkSubmitInfo</type>* <name>pSubmits</name></param>
2812 <param optional="true" externsync="true"><type>VkFence</type> <name>fence</name></param>
2813 </command>
2814 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2815 <proto><type>VkResult</type> <name>vkQueueWaitIdle</name></proto>
2816 <param><type>VkQueue</type> <name>queue</name></param>
2817 </command>
2818 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2819 <proto><type>VkResult</type> <name>vkDeviceWaitIdle</name></proto>
2820 <param><type>VkDevice</type> <name>device</name></param>
2821 <implicitexternsyncparams>
2822 <param>all sname:VkQueue objects created from pname:device</param>
2823 </implicitexternsyncparams>
2824 </command>
2825 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_TOO_MANY_OBJECTS">
2826 <proto><type>VkResult</type> <name>vkAllocateMemory</name></proto>
2827 <param><type>VkDevice</type> <name>device</name></param>
2828 <param>const <type>VkMemoryAllocateInfo</type>* <name>pAllocateInfo</name></param>
2829 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2830 <param><type>VkDeviceMemory</type>* <name>pMemory</name></param>
2831 </command>
2832 <command>
2833 <proto><type>void</type> <name>vkFreeMemory</name></proto>
2834 <param><type>VkDevice</type> <name>device</name></param>
2835 <param optional="true" externsync="true"><type>VkDeviceMemory</type> <name>memory</name></param>
2836 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2837 </command>
2838 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_MEMORY_MAP_FAILED">
2839 <proto><type>VkResult</type> <name>vkMapMemory</name></proto>
2840 <param><type>VkDevice</type> <name>device</name></param>
2841 <param externsync="true"><type>VkDeviceMemory</type> <name>memory</name></param>
2842 <param><type>VkDeviceSize</type> <name>offset</name></param>
2843 <param><type>VkDeviceSize</type> <name>size</name></param>
2844 <param optional="true"><type>VkMemoryMapFlags</type> <name>flags</name></param>
2845 <param><type>void</type>** <name>ppData</name></param>
2846 </command>
2847 <command>
2848 <proto><type>void</type> <name>vkUnmapMemory</name></proto>
2849 <param><type>VkDevice</type> <name>device</name></param>
2850 <param externsync="true"><type>VkDeviceMemory</type> <name>memory</name></param>
2851 </command>
2852 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2853 <proto><type>VkResult</type> <name>vkFlushMappedMemoryRanges</name></proto>
2854 <param><type>VkDevice</type> <name>device</name></param>
2855 <param><type>uint32_t</type> <name>memoryRangeCount</name></param>
2856 <param len="memoryRangeCount">const <type>VkMappedMemoryRange</type>* <name>pMemoryRanges</name></param>
2857 </command>
2858 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2859 <proto><type>VkResult</type> <name>vkInvalidateMappedMemoryRanges</name></proto>
2860 <param><type>VkDevice</type> <name>device</name></param>
2861 <param><type>uint32_t</type> <name>memoryRangeCount</name></param>
2862 <param len="memoryRangeCount">const <type>VkMappedMemoryRange</type>* <name>pMemoryRanges</name></param>
2863 </command>
2864 <command>
2865 <proto><type>void</type> <name>vkGetDeviceMemoryCommitment</name></proto>
2866 <param><type>VkDevice</type> <name>device</name></param>
2867 <param><type>VkDeviceMemory</type> <name>memory</name></param>
2868 <param><type>VkDeviceSize</type>* <name>pCommittedMemoryInBytes</name></param>
2869 </command>
2870 <command>
2871 <proto><type>void</type> <name>vkGetBufferMemoryRequirements</name></proto>
2872 <param><type>VkDevice</type> <name>device</name></param>
2873 <param><type>VkBuffer</type> <name>buffer</name></param>
2874 <param><type>VkMemoryRequirements</type>* <name>pMemoryRequirements</name></param>
2875 </command>
2876 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2877 <proto><type>VkResult</type> <name>vkBindBufferMemory</name></proto>
2878 <param><type>VkDevice</type> <name>device</name></param>
2879 <param externsync="true"><type>VkBuffer</type> <name>buffer</name></param>
2880 <param><type>VkDeviceMemory</type> <name>memory</name></param>
2881 <param><type>VkDeviceSize</type> <name>memoryOffset</name></param>
2882 </command>
2883 <command>
2884 <proto><type>void</type> <name>vkGetImageMemoryRequirements</name></proto>
2885 <param><type>VkDevice</type> <name>device</name></param>
2886 <param><type>VkImage</type> <name>image</name></param>
2887 <param><type>VkMemoryRequirements</type>* <name>pMemoryRequirements</name></param>
2888 </command>
2889 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2890 <proto><type>VkResult</type> <name>vkBindImageMemory</name></proto>
2891 <param><type>VkDevice</type> <name>device</name></param>
2892 <param externsync="true"><type>VkImage</type> <name>image</name></param>
2893 <param><type>VkDeviceMemory</type> <name>memory</name></param>
2894 <param><type>VkDeviceSize</type> <name>memoryOffset</name></param>
2895 </command>
2896 <command>
2897 <proto><type>void</type> <name>vkGetImageSparseMemoryRequirements</name></proto>
2898 <param><type>VkDevice</type> <name>device</name></param>
2899 <param><type>VkImage</type> <name>image</name></param>
2900 <param optional="false,true"><type>uint32_t</type>* <name>pSparseMemoryRequirementCount</name></param>
2901 <param optional="true" len="pSparseMemoryRequirementCount"><type>VkSparseImageMemoryRequirements</type>* <name>pSparseMemoryRequirements</name></param>
2902 </command>
2903 <command>
2904 <proto><type>void</type> <name>vkGetPhysicalDeviceSparseImageFormatProperties</name></proto>
2905 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
2906 <param><type>VkFormat</type> <name>format</name></param>
2907 <param><type>VkImageType</type> <name>type</name></param>
2908 <param><type>VkSampleCountFlagBits</type> <name>samples</name></param>
2909 <param><type>VkImageUsageFlags</type> <name>usage</name></param>
2910 <param><type>VkImageTiling</type> <name>tiling</name></param>
2911 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
2912 <param optional="true" len="pPropertyCount"><type>VkSparseImageFormatProperties</type>* <name>pProperties</name></param>
2913 </command>
2914 <command queues="sparse_binding" successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2915 <proto><type>VkResult</type> <name>vkQueueBindSparse</name></proto>
2916 <param externsync="true"><type>VkQueue</type> <name>queue</name></param>
2917 <param optional="true"><type>uint32_t</type> <name>bindInfoCount</name></param>
2918 <param len="bindInfoCount" externsync="pBindInfo[].pWaitSemaphores[],pBindInfo[].pSignalSemaphores[],pBindInfo[].pBufferBinds[].buffer,pBindInfo[].pImageOpaqueBinds[].image,pBindInfo[].pImageBinds[].image">const <type>VkBindSparseInfo</type>* <name>pBindInfo</name></param>
2919 <param optional="true" externsync="true"><type>VkFence</type> <name>fence</name></param>
2920 </command>
2921 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2922 <proto><type>VkResult</type> <name>vkCreateFence</name></proto>
2923 <param><type>VkDevice</type> <name>device</name></param>
2924 <param>const <type>VkFenceCreateInfo</type>* <name>pCreateInfo</name></param>
2925 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2926 <param><type>VkFence</type>* <name>pFence</name></param>
2927 </command>
2928 <command>
2929 <proto><type>void</type> <name>vkDestroyFence</name></proto>
2930 <param><type>VkDevice</type> <name>device</name></param>
2931 <param optional="true" externsync="true"><type>VkFence</type> <name>fence</name></param>
2932 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2933 </command>
2934 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2935 <proto><type>VkResult</type> <name>vkResetFences</name></proto>
2936 <param><type>VkDevice</type> <name>device</name></param>
2937 <param><type>uint32_t</type> <name>fenceCount</name></param>
2938 <param len="fenceCount" externsync="true">const <type>VkFence</type>* <name>pFences</name></param>
2939 </command>
2940 <command successcodes="VK_SUCCESS,VK_NOT_READY" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2941 <proto><type>VkResult</type> <name>vkGetFenceStatus</name></proto>
2942 <param><type>VkDevice</type> <name>device</name></param>
2943 <param><type>VkFence</type> <name>fence</name></param>
2944 </command>
2945 <command successcodes="VK_SUCCESS,VK_TIMEOUT" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2946 <proto><type>VkResult</type> <name>vkWaitForFences</name></proto>
2947 <param><type>VkDevice</type> <name>device</name></param>
2948 <param><type>uint32_t</type> <name>fenceCount</name></param>
2949 <param len="fenceCount">const <type>VkFence</type>* <name>pFences</name></param>
2950 <param><type>VkBool32</type> <name>waitAll</name></param>
2951 <param><type>uint64_t</type> <name>timeout</name></param>
2952 </command>
2953 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2954 <proto><type>VkResult</type> <name>vkCreateSemaphore</name></proto>
2955 <param><type>VkDevice</type> <name>device</name></param>
2956 <param>const <type>VkSemaphoreCreateInfo</type>* <name>pCreateInfo</name></param>
2957 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2958 <param><type>VkSemaphore</type>* <name>pSemaphore</name></param>
2959 </command>
2960 <command>
2961 <proto><type>void</type> <name>vkDestroySemaphore</name></proto>
2962 <param><type>VkDevice</type> <name>device</name></param>
2963 <param optional="true" externsync="true"><type>VkSemaphore</type> <name>semaphore</name></param>
2964 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2965 </command>
2966 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2967 <proto><type>VkResult</type> <name>vkCreateEvent</name></proto>
2968 <param><type>VkDevice</type> <name>device</name></param>
2969 <param>const <type>VkEventCreateInfo</type>* <name>pCreateInfo</name></param>
2970 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2971 <param><type>VkEvent</type>* <name>pEvent</name></param>
2972 </command>
2973 <command>
2974 <proto><type>void</type> <name>vkDestroyEvent</name></proto>
2975 <param><type>VkDevice</type> <name>device</name></param>
2976 <param optional="true" externsync="true"><type>VkEvent</type> <name>event</name></param>
2977 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2978 </command>
2979 <command successcodes="VK_EVENT_SET,VK_EVENT_RESET" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
2980 <proto><type>VkResult</type> <name>vkGetEventStatus</name></proto>
2981 <param><type>VkDevice</type> <name>device</name></param>
2982 <param><type>VkEvent</type> <name>event</name></param>
2983 </command>
2984 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2985 <proto><type>VkResult</type> <name>vkSetEvent</name></proto>
2986 <param><type>VkDevice</type> <name>device</name></param>
2987 <param externsync="true"><type>VkEvent</type> <name>event</name></param>
2988 </command>
2989 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2990 <proto><type>VkResult</type> <name>vkResetEvent</name></proto>
2991 <param><type>VkDevice</type> <name>device</name></param>
2992 <param externsync="true"><type>VkEvent</type> <name>event</name></param>
2993 </command>
2994 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
2995 <proto><type>VkResult</type> <name>vkCreateQueryPool</name></proto>
2996 <param><type>VkDevice</type> <name>device</name></param>
2997 <param>const <type>VkQueryPoolCreateInfo</type>* <name>pCreateInfo</name></param>
2998 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
2999 <param><type>VkQueryPool</type>* <name>pQueryPool</name></param>
3000 </command>
3001 <command>
3002 <proto><type>void</type> <name>vkDestroyQueryPool</name></proto>
3003 <param><type>VkDevice</type> <name>device</name></param>
3004 <param optional="true" externsync="true"><type>VkQueryPool</type> <name>queryPool</name></param>
3005 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3006 </command>
3007 <command successcodes="VK_SUCCESS,VK_NOT_READY" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST">
3008 <proto><type>VkResult</type> <name>vkGetQueryPoolResults</name></proto>
3009 <param><type>VkDevice</type> <name>device</name></param>
3010 <param><type>VkQueryPool</type> <name>queryPool</name></param>
3011 <param><type>uint32_t</type> <name>firstQuery</name></param>
3012 <param><type>uint32_t</type> <name>queryCount</name></param>
3013 <param><type>size_t</type> <name>dataSize</name></param>
3014 <param len="dataSize"><type>void</type>* <name>pData</name></param>
3015 <param><type>VkDeviceSize</type> <name>stride</name></param>
3016 <param optional="true"><type>VkQueryResultFlags</type> <name>flags</name></param>
3017 </command>
3018 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3019 <proto><type>VkResult</type> <name>vkCreateBuffer</name></proto>
3020 <param><type>VkDevice</type> <name>device</name></param>
3021 <param>const <type>VkBufferCreateInfo</type>* <name>pCreateInfo</name></param>
3022 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3023 <param><type>VkBuffer</type>* <name>pBuffer</name></param>
3024 </command>
3025 <command>
3026 <proto><type>void</type> <name>vkDestroyBuffer</name></proto>
3027 <param><type>VkDevice</type> <name>device</name></param>
3028 <param optional="true" externsync="true"><type>VkBuffer</type> <name>buffer</name></param>
3029 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3030 </command>
3031 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3032 <proto><type>VkResult</type> <name>vkCreateBufferView</name></proto>
3033 <param><type>VkDevice</type> <name>device</name></param>
3034 <param>const <type>VkBufferViewCreateInfo</type>* <name>pCreateInfo</name></param>
3035 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3036 <param><type>VkBufferView</type>* <name>pView</name></param>
3037 </command>
3038 <command>
3039 <proto><type>void</type> <name>vkDestroyBufferView</name></proto>
3040 <param><type>VkDevice</type> <name>device</name></param>
3041 <param optional="true" externsync="true"><type>VkBufferView</type> <name>bufferView</name></param>
3042 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3043 </command>
3044 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3045 <proto><type>VkResult</type> <name>vkCreateImage</name></proto>
3046 <param><type>VkDevice</type> <name>device</name></param>
3047 <param>const <type>VkImageCreateInfo</type>* <name>pCreateInfo</name></param>
3048 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3049 <param><type>VkImage</type>* <name>pImage</name></param>
3050 </command>
3051 <command>
3052 <proto><type>void</type> <name>vkDestroyImage</name></proto>
3053 <param><type>VkDevice</type> <name>device</name></param>
3054 <param optional="true" externsync="true"><type>VkImage</type> <name>image</name></param>
3055 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3056 </command>
3057 <command>
3058 <proto><type>void</type> <name>vkGetImageSubresourceLayout</name></proto>
3059 <param><type>VkDevice</type> <name>device</name></param>
3060 <param><type>VkImage</type> <name>image</name></param>
3061 <param>const <type>VkImageSubresource</type>* <name>pSubresource</name></param>
3062 <param><type>VkSubresourceLayout</type>* <name>pLayout</name></param>
3063 </command>
3064 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3065 <proto><type>VkResult</type> <name>vkCreateImageView</name></proto>
3066 <param><type>VkDevice</type> <name>device</name></param>
3067 <param>const <type>VkImageViewCreateInfo</type>* <name>pCreateInfo</name></param>
3068 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3069 <param><type>VkImageView</type>* <name>pView</name></param>
3070 </command>
3071 <command>
3072 <proto><type>void</type> <name>vkDestroyImageView</name></proto>
3073 <param><type>VkDevice</type> <name>device</name></param>
3074 <param optional="true" externsync="true"><type>VkImageView</type> <name>imageView</name></param>
3075 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3076 </command>
3077 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INVALID_SHADER_NV">
3078 <proto><type>VkResult</type> <name>vkCreateShaderModule</name></proto>
3079 <param><type>VkDevice</type> <name>device</name></param>
3080 <param>const <type>VkShaderModuleCreateInfo</type>* <name>pCreateInfo</name></param>
3081 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3082 <param><type>VkShaderModule</type>* <name>pShaderModule</name></param>
3083 </command>
3084 <command>
3085 <proto><type>void</type> <name>vkDestroyShaderModule</name></proto>
3086 <param><type>VkDevice</type> <name>device</name></param>
3087 <param optional="true" externsync="true"><type>VkShaderModule</type> <name>shaderModule</name></param>
3088 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3089 </command>
3090 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3091 <proto><type>VkResult</type> <name>vkCreatePipelineCache</name></proto>
3092 <param><type>VkDevice</type> <name>device</name></param>
3093 <param>const <type>VkPipelineCacheCreateInfo</type>* <name>pCreateInfo</name></param>
3094 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3095 <param><type>VkPipelineCache</type>* <name>pPipelineCache</name></param>
3096 </command>
3097 <command>
3098 <proto><type>void</type> <name>vkDestroyPipelineCache</name></proto>
3099 <param><type>VkDevice</type> <name>device</name></param>
3100 <param optional="true" externsync="true"><type>VkPipelineCache</type> <name>pipelineCache</name></param>
3101 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3102 </command>
3103 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3104 <proto><type>VkResult</type> <name>vkGetPipelineCacheData</name></proto>
3105 <param><type>VkDevice</type> <name>device</name></param>
3106 <param><type>VkPipelineCache</type> <name>pipelineCache</name></param>
3107 <param optional="false,true"><type>size_t</type>* <name>pDataSize</name></param>
3108 <param optional="true" len="pDataSize"><type>void</type>* <name>pData</name></param>
3109 </command>
3110 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3111 <proto><type>VkResult</type> <name>vkMergePipelineCaches</name></proto>
3112 <param><type>VkDevice</type> <name>device</name></param>
3113 <param externsync="true"><type>VkPipelineCache</type> <name>dstCache</name></param>
3114 <param><type>uint32_t</type> <name>srcCacheCount</name></param>
3115 <param len="srcCacheCount">const <type>VkPipelineCache</type>* <name>pSrcCaches</name></param>
3116 </command>
3117 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INVALID_SHADER_NV">
3118 <proto><type>VkResult</type> <name>vkCreateGraphicsPipelines</name></proto>
3119 <param><type>VkDevice</type> <name>device</name></param>
3120 <param optional="true"><type>VkPipelineCache</type> <name>pipelineCache</name></param>
3121 <param><type>uint32_t</type> <name>createInfoCount</name></param>
3122 <param len="createInfoCount">const <type>VkGraphicsPipelineCreateInfo</type>* <name>pCreateInfos</name></param>
3123 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3124 <param len="createInfoCount"><type>VkPipeline</type>* <name>pPipelines</name></param>
3125 </command>
3126 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INVALID_SHADER_NV">
3127 <proto><type>VkResult</type> <name>vkCreateComputePipelines</name></proto>
3128 <param><type>VkDevice</type> <name>device</name></param>
3129 <param optional="true"><type>VkPipelineCache</type> <name>pipelineCache</name></param>
3130 <param><type>uint32_t</type> <name>createInfoCount</name></param>
3131 <param len="createInfoCount">const <type>VkComputePipelineCreateInfo</type>* <name>pCreateInfos</name></param>
3132 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3133 <param len="createInfoCount"><type>VkPipeline</type>* <name>pPipelines</name></param>
3134 </command>
3135 <command>
3136 <proto><type>void</type> <name>vkDestroyPipeline</name></proto>
3137 <param><type>VkDevice</type> <name>device</name></param>
3138 <param optional="true" externsync="true"><type>VkPipeline</type> <name>pipeline</name></param>
3139 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3140 </command>
3141 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3142 <proto><type>VkResult</type> <name>vkCreatePipelineLayout</name></proto>
3143 <param><type>VkDevice</type> <name>device</name></param>
3144 <param>const <type>VkPipelineLayoutCreateInfo</type>* <name>pCreateInfo</name></param>
3145 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3146 <param><type>VkPipelineLayout</type>* <name>pPipelineLayout</name></param>
3147 </command>
3148 <command>
3149 <proto><type>void</type> <name>vkDestroyPipelineLayout</name></proto>
3150 <param><type>VkDevice</type> <name>device</name></param>
3151 <param optional="true" externsync="true"><type>VkPipelineLayout</type> <name>pipelineLayout</name></param>
3152 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3153 </command>
3154 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_TOO_MANY_OBJECTS">
3155 <proto><type>VkResult</type> <name>vkCreateSampler</name></proto>
3156 <param><type>VkDevice</type> <name>device</name></param>
3157 <param>const <type>VkSamplerCreateInfo</type>* <name>pCreateInfo</name></param>
3158 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3159 <param><type>VkSampler</type>* <name>pSampler</name></param>
3160 </command>
3161 <command>
3162 <proto><type>void</type> <name>vkDestroySampler</name></proto>
3163 <param><type>VkDevice</type> <name>device</name></param>
3164 <param optional="true" externsync="true"><type>VkSampler</type> <name>sampler</name></param>
3165 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3166 </command>
3167 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3168 <proto><type>VkResult</type> <name>vkCreateDescriptorSetLayout</name></proto>
3169 <param><type>VkDevice</type> <name>device</name></param>
3170 <param>const <type>VkDescriptorSetLayoutCreateInfo</type>* <name>pCreateInfo</name></param>
3171 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3172 <param><type>VkDescriptorSetLayout</type>* <name>pSetLayout</name></param>
3173 </command>
3174 <command>
3175 <proto><type>void</type> <name>vkDestroyDescriptorSetLayout</name></proto>
3176 <param><type>VkDevice</type> <name>device</name></param>
3177 <param optional="true" externsync="true"><type>VkDescriptorSetLayout</type> <name>descriptorSetLayout</name></param>
3178 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3179 </command>
3180 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3181 <proto><type>VkResult</type> <name>vkCreateDescriptorPool</name></proto>
3182 <param><type>VkDevice</type> <name>device</name></param>
3183 <param>const <type>VkDescriptorPoolCreateInfo</type>* <name>pCreateInfo</name></param>
3184 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3185 <param><type>VkDescriptorPool</type>* <name>pDescriptorPool</name></param>
3186 </command>
3187 <command>
3188 <proto><type>void</type> <name>vkDestroyDescriptorPool</name></proto>
3189 <param><type>VkDevice</type> <name>device</name></param>
3190 <param optional="true" externsync="true"><type>VkDescriptorPool</type> <name>descriptorPool</name></param>
3191 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3192 </command>
3193 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3194 <proto><type>VkResult</type> <name>vkResetDescriptorPool</name></proto>
3195 <param><type>VkDevice</type> <name>device</name></param>
3196 <param externsync="true"><type>VkDescriptorPool</type> <name>descriptorPool</name></param>
3197 <param optional="true"><type>VkDescriptorPoolResetFlags</type> <name>flags</name></param>
3198 <implicitexternsyncparams>
3199 <param>any sname:VkDescriptorSet objects allocated from pname:descriptorPool</param>
3200 </implicitexternsyncparams>
3201 </command>
3202 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_FRAGMENTED_POOL">
3203 <proto><type>VkResult</type> <name>vkAllocateDescriptorSets</name></proto>
3204 <param><type>VkDevice</type> <name>device</name></param>
3205 <param externsync="pAllocateInfo::descriptorPool">const <type>VkDescriptorSetAllocateInfo</type>* <name>pAllocateInfo</name></param>
3206 <param len="pAllocateInfo::descriptorSetCount"><type>VkDescriptorSet</type>* <name>pDescriptorSets</name></param>
3207 </command>
3208 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3209 <proto><type>VkResult</type> <name>vkFreeDescriptorSets</name></proto>
3210 <param><type>VkDevice</type> <name>device</name></param>
3211 <param externsync="true"><type>VkDescriptorPool</type> <name>descriptorPool</name></param>
3212 <param><type>uint32_t</type> <name>descriptorSetCount</name></param>
3213 <param noautovalidity="true" externsync="true" len="descriptorSetCount">const <type>VkDescriptorSet</type>* <name>pDescriptorSets</name></param>
3214 </command>
3215 <command>
3216 <proto><type>void</type> <name>vkUpdateDescriptorSets</name></proto>
3217 <param><type>VkDevice</type> <name>device</name></param>
3218 <param optional="true"><type>uint32_t</type> <name>descriptorWriteCount</name></param>
3219 <param len="descriptorWriteCount" externsync="pDescriptorWrites[].dstSet">const <type>VkWriteDescriptorSet</type>* <name>pDescriptorWrites</name></param>
3220 <param optional="true"><type>uint32_t</type> <name>descriptorCopyCount</name></param>
3221 <param len="descriptorCopyCount" externsync="pDescriptorCopies[].dstSet">const <type>VkCopyDescriptorSet</type>* <name>pDescriptorCopies</name></param>
3222 </command>
3223 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3224 <proto><type>VkResult</type> <name>vkCreateFramebuffer</name></proto>
3225 <param><type>VkDevice</type> <name>device</name></param>
3226 <param>const <type>VkFramebufferCreateInfo</type>* <name>pCreateInfo</name></param>
3227 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3228 <param><type>VkFramebuffer</type>* <name>pFramebuffer</name></param>
3229 </command>
3230 <command>
3231 <proto><type>void</type> <name>vkDestroyFramebuffer</name></proto>
3232 <param><type>VkDevice</type> <name>device</name></param>
3233 <param optional="true" externsync="true"><type>VkFramebuffer</type> <name>framebuffer</name></param>
3234 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3235 </command>
3236 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3237 <proto><type>VkResult</type> <name>vkCreateRenderPass</name></proto>
3238 <param><type>VkDevice</type> <name>device</name></param>
3239 <param>const <type>VkRenderPassCreateInfo</type>* <name>pCreateInfo</name></param>
3240 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3241 <param><type>VkRenderPass</type>* <name>pRenderPass</name></param>
3242 </command>
3243 <command>
3244 <proto><type>void</type> <name>vkDestroyRenderPass</name></proto>
3245 <param><type>VkDevice</type> <name>device</name></param>
3246 <param optional="true" externsync="true"><type>VkRenderPass</type> <name>renderPass</name></param>
3247 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3248 </command>
3249 <command>
3250 <proto><type>void</type> <name>vkGetRenderAreaGranularity</name></proto>
3251 <param><type>VkDevice</type> <name>device</name></param>
3252 <param><type>VkRenderPass</type> <name>renderPass</name></param>
3253 <param><type>VkExtent2D</type>* <name>pGranularity</name></param>
3254 </command>
3255 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3256 <proto><type>VkResult</type> <name>vkCreateCommandPool</name></proto>
3257 <param><type>VkDevice</type> <name>device</name></param>
3258 <param>const <type>VkCommandPoolCreateInfo</type>* <name>pCreateInfo</name></param>
3259 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3260 <param><type>VkCommandPool</type>* <name>pCommandPool</name></param>
3261 </command>
3262 <command>
3263 <proto><type>void</type> <name>vkDestroyCommandPool</name></proto>
3264 <param><type>VkDevice</type> <name>device</name></param>
3265 <param optional="true" externsync="true"><type>VkCommandPool</type> <name>commandPool</name></param>
3266 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3267 </command>
3268 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3269 <proto><type>VkResult</type> <name>vkResetCommandPool</name></proto>
3270 <param><type>VkDevice</type> <name>device</name></param>
3271 <param externsync="true"><type>VkCommandPool</type> <name>commandPool</name></param>
3272 <param optional="true"><type>VkCommandPoolResetFlags</type> <name>flags</name></param>
3273 </command>
3274 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3275 <proto><type>VkResult</type> <name>vkAllocateCommandBuffers</name></proto>
3276 <param><type>VkDevice</type> <name>device</name></param>
3277 <param externsync="pAllocateInfo::commandPool">const <type>VkCommandBufferAllocateInfo</type>* <name>pAllocateInfo</name></param>
3278 <param len="pAllocateInfo::commandBufferCount"><type>VkCommandBuffer</type>* <name>pCommandBuffers</name></param>
3279 </command>
3280 <command>
3281 <proto><type>void</type> <name>vkFreeCommandBuffers</name></proto>
3282 <param><type>VkDevice</type> <name>device</name></param>
3283 <param externsync="true"><type>VkCommandPool</type> <name>commandPool</name></param>
3284 <param><type>uint32_t</type> <name>commandBufferCount</name></param>
3285 <param noautovalidity="true" externsync="true" len="commandBufferCount">const <type>VkCommandBuffer</type>* <name>pCommandBuffers</name></param>
3286 </command>
3287 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3288 <proto><type>VkResult</type> <name>vkBeginCommandBuffer</name></proto>
3289 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3290 <param>const <type>VkCommandBufferBeginInfo</type>* <name>pBeginInfo</name></param>
3291 <implicitexternsyncparams>
3292 <param>the sname:VkCommandPool that pname:commandBuffer was allocated from</param>
3293 </implicitexternsyncparams>
3294 </command>
3295 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3296 <proto><type>VkResult</type> <name>vkEndCommandBuffer</name></proto>
3297 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3298 <implicitexternsyncparams>
3299 <param>the sname:VkCommandPool that pname:commandBuffer was allocated from</param>
3300 </implicitexternsyncparams>
3301 </command>
3302 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3303 <proto><type>VkResult</type> <name>vkResetCommandBuffer</name></proto>
3304 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3305 <param optional="true"><type>VkCommandBufferResetFlags</type> <name>flags</name></param>
3306 </command>
3307 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3308 <proto><type>void</type> <name>vkCmdBindPipeline</name></proto>
3309 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3310 <param><type>VkPipelineBindPoint</type> <name>pipelineBindPoint</name></param>
3311 <param><type>VkPipeline</type> <name>pipeline</name></param>
3312 </command>
3313 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3314 <proto><type>void</type> <name>vkCmdSetViewport</name></proto>
3315 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3316 <param><type>uint32_t</type> <name>firstViewport</name></param>
3317 <param><type>uint32_t</type> <name>viewportCount</name></param>
3318 <param len="viewportCount" noautovalidity="true">const <type>VkViewport</type>* <name>pViewports</name></param>
3319 </command>
3320 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3321 <proto><type>void</type> <name>vkCmdSetScissor</name></proto>
3322 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3323 <param><type>uint32_t</type> <name>firstScissor</name></param>
3324 <param><type>uint32_t</type> <name>scissorCount</name></param>
3325 <param len="scissorCount">const <type>VkRect2D</type>* <name>pScissors</name></param>
3326 </command>
3327 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3328 <proto><type>void</type> <name>vkCmdSetLineWidth</name></proto>
3329 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3330 <param><type>float</type> <name>lineWidth</name></param>
3331 </command>
3332 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3333 <proto><type>void</type> <name>vkCmdSetDepthBias</name></proto>
3334 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3335 <param><type>float</type> <name>depthBiasConstantFactor</name></param>
3336 <param><type>float</type> <name>depthBiasClamp</name></param>
3337 <param><type>float</type> <name>depthBiasSlopeFactor</name></param>
3338 </command>
3339 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3340 <proto><type>void</type> <name>vkCmdSetBlendConstants</name></proto>
3341 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3342 <param>const <type>float</type> <name>blendConstants</name>[4]</param>
3343 </command>
3344 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3345 <proto><type>void</type> <name>vkCmdSetDepthBounds</name></proto>
3346 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3347 <param><type>float</type> <name>minDepthBounds</name></param>
3348 <param><type>float</type> <name>maxDepthBounds</name></param>
3349 </command>
3350 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3351 <proto><type>void</type> <name>vkCmdSetStencilCompareMask</name></proto>
3352 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3353 <param><type>VkStencilFaceFlags</type> <name>faceMask</name></param>
3354 <param><type>uint32_t</type> <name>compareMask</name></param>
3355 </command>
3356 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3357 <proto><type>void</type> <name>vkCmdSetStencilWriteMask</name></proto>
3358 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3359 <param><type>VkStencilFaceFlags</type> <name>faceMask</name></param>
3360 <param><type>uint32_t</type> <name>writeMask</name></param>
3361 </command>
3362 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3363 <proto><type>void</type> <name>vkCmdSetStencilReference</name></proto>
3364 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3365 <param><type>VkStencilFaceFlags</type> <name>faceMask</name></param>
3366 <param><type>uint32_t</type> <name>reference</name></param>
3367 </command>
3368 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3369 <proto><type>void</type> <name>vkCmdBindDescriptorSets</name></proto>
3370 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3371 <param><type>VkPipelineBindPoint</type> <name>pipelineBindPoint</name></param>
3372 <param><type>VkPipelineLayout</type> <name>layout</name></param>
3373 <param><type>uint32_t</type> <name>firstSet</name></param>
3374 <param><type>uint32_t</type> <name>descriptorSetCount</name></param>
3375 <param len="descriptorSetCount">const <type>VkDescriptorSet</type>* <name>pDescriptorSets</name></param>
3376 <param optional="true"><type>uint32_t</type> <name>dynamicOffsetCount</name></param>
3377 <param len="dynamicOffsetCount">const <type>uint32_t</type>* <name>pDynamicOffsets</name></param>
3378 </command>
3379 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3380 <proto><type>void</type> <name>vkCmdBindIndexBuffer</name></proto>
3381 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3382 <param><type>VkBuffer</type> <name>buffer</name></param>
3383 <param><type>VkDeviceSize</type> <name>offset</name></param>
3384 <param><type>VkIndexType</type> <name>indexType</name></param>
3385 </command>
3386 <command queues="graphics" renderpass="both" cmdbufferlevel="primary,secondary">
3387 <proto><type>void</type> <name>vkCmdBindVertexBuffers</name></proto>
3388 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3389 <param><type>uint32_t</type> <name>firstBinding</name></param>
3390 <param><type>uint32_t</type> <name>bindingCount</name></param>
3391 <param len="bindingCount">const <type>VkBuffer</type>* <name>pBuffers</name></param>
3392 <param len="bindingCount">const <type>VkDeviceSize</type>* <name>pOffsets</name></param>
3393 </command>
3394 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3395 <proto><type>void</type> <name>vkCmdDraw</name></proto>
3396 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3397 <param><type>uint32_t</type> <name>vertexCount</name></param>
3398 <param><type>uint32_t</type> <name>instanceCount</name></param>
3399 <param><type>uint32_t</type> <name>firstVertex</name></param>
3400 <param><type>uint32_t</type> <name>firstInstance</name></param>
3401 </command>
3402 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3403 <proto><type>void</type> <name>vkCmdDrawIndexed</name></proto>
3404 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3405 <param><type>uint32_t</type> <name>indexCount</name></param>
3406 <param><type>uint32_t</type> <name>instanceCount</name></param>
3407 <param><type>uint32_t</type> <name>firstIndex</name></param>
3408 <param><type>int32_t</type> <name>vertexOffset</name></param>
3409 <param><type>uint32_t</type> <name>firstInstance</name></param>
3410 </command>
3411 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3412 <proto><type>void</type> <name>vkCmdDrawIndirect</name></proto>
3413 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3414 <param><type>VkBuffer</type> <name>buffer</name></param>
3415 <param><type>VkDeviceSize</type> <name>offset</name></param>
3416 <param><type>uint32_t</type> <name>drawCount</name></param>
3417 <param><type>uint32_t</type> <name>stride</name></param>
3418 </command>
3419 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3420 <proto><type>void</type> <name>vkCmdDrawIndexedIndirect</name></proto>
3421 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3422 <param><type>VkBuffer</type> <name>buffer</name></param>
3423 <param><type>VkDeviceSize</type> <name>offset</name></param>
3424 <param><type>uint32_t</type> <name>drawCount</name></param>
3425 <param><type>uint32_t</type> <name>stride</name></param>
3426 </command>
3427 <command queues="compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="compute">
3428 <proto><type>void</type> <name>vkCmdDispatch</name></proto>
3429 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3430 <param><type>uint32_t</type> <name>x</name></param>
3431 <param><type>uint32_t</type> <name>y</name></param>
3432 <param><type>uint32_t</type> <name>z</name></param>
3433 </command>
3434 <command queues="compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="compute">
3435 <proto><type>void</type> <name>vkCmdDispatchIndirect</name></proto>
3436 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3437 <param><type>VkBuffer</type> <name>buffer</name></param>
3438 <param><type>VkDeviceSize</type> <name>offset</name></param>
3439 </command>
3440 <command queues="transfer,graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3441 <proto><type>void</type> <name>vkCmdCopyBuffer</name></proto>
3442 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3443 <param><type>VkBuffer</type> <name>srcBuffer</name></param>
3444 <param><type>VkBuffer</type> <name>dstBuffer</name></param>
3445 <param><type>uint32_t</type> <name>regionCount</name></param>
3446 <param len="regionCount">const <type>VkBufferCopy</type>* <name>pRegions</name></param>
3447 </command>
3448 <command queues="transfer,graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3449 <proto><type>void</type> <name>vkCmdCopyImage</name></proto>
3450 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3451 <param><type>VkImage</type> <name>srcImage</name></param>
3452 <param><type>VkImageLayout</type> <name>srcImageLayout</name></param>
3453 <param><type>VkImage</type> <name>dstImage</name></param>
3454 <param><type>VkImageLayout</type> <name>dstImageLayout</name></param>
3455 <param><type>uint32_t</type> <name>regionCount</name></param>
3456 <param len="regionCount">const <type>VkImageCopy</type>* <name>pRegions</name></param>
3457 </command>
3458 <command queues="graphics" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3459 <proto><type>void</type> <name>vkCmdBlitImage</name></proto>
3460 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3461 <param><type>VkImage</type> <name>srcImage</name></param>
3462 <param><type>VkImageLayout</type> <name>srcImageLayout</name></param>
3463 <param><type>VkImage</type> <name>dstImage</name></param>
3464 <param><type>VkImageLayout</type> <name>dstImageLayout</name></param>
3465 <param><type>uint32_t</type> <name>regionCount</name></param>
3466 <param len="regionCount">const <type>VkImageBlit</type>* <name>pRegions</name></param>
3467 <param><type>VkFilter</type> <name>filter</name></param>
3468 </command>
3469 <command queues="transfer,graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3470 <proto><type>void</type> <name>vkCmdCopyBufferToImage</name></proto>
3471 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3472 <param><type>VkBuffer</type> <name>srcBuffer</name></param>
3473 <param><type>VkImage</type> <name>dstImage</name></param>
3474 <param><type>VkImageLayout</type> <name>dstImageLayout</name></param>
3475 <param><type>uint32_t</type> <name>regionCount</name></param>
3476 <param len="regionCount">const <type>VkBufferImageCopy</type>* <name>pRegions</name></param>
3477 </command>
3478 <command queues="transfer,graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3479 <proto><type>void</type> <name>vkCmdCopyImageToBuffer</name></proto>
3480 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3481 <param><type>VkImage</type> <name>srcImage</name></param>
3482 <param><type>VkImageLayout</type> <name>srcImageLayout</name></param>
3483 <param><type>VkBuffer</type> <name>dstBuffer</name></param>
3484 <param><type>uint32_t</type> <name>regionCount</name></param>
3485 <param len="regionCount">const <type>VkBufferImageCopy</type>* <name>pRegions</name></param>
3486 </command>
3487 <command queues="transfer,graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3488 <proto><type>void</type> <name>vkCmdUpdateBuffer</name></proto>
3489 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3490 <param><type>VkBuffer</type> <name>dstBuffer</name></param>
3491 <param><type>VkDeviceSize</type> <name>dstOffset</name></param>
3492 <param><type>VkDeviceSize</type> <name>dataSize</name></param>
3493 <param len="dataSize">const <type>void</type>* <name>pData</name></param>
3494 </command>
3495 <command queues="transfer,graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer" comment="transfer support is only available when VK_KHR_maintenance1 is enabled, as documented in valid usage language in the specification">
3496 <proto><type>void</type> <name>vkCmdFillBuffer</name></proto>
3497 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3498 <param><type>VkBuffer</type> <name>dstBuffer</name></param>
3499 <param><type>VkDeviceSize</type> <name>dstOffset</name></param>
3500 <param><type>VkDeviceSize</type> <name>size</name></param>
3501 <param><type>uint32_t</type> <name>data</name></param>
3502 </command>
3503 <command queues="graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3504 <proto><type>void</type> <name>vkCmdClearColorImage</name></proto>
3505 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3506 <param><type>VkImage</type> <name>image</name></param>
3507 <param><type>VkImageLayout</type> <name>imageLayout</name></param>
3508 <param>const <type>VkClearColorValue</type>* <name>pColor</name></param>
3509 <param><type>uint32_t</type> <name>rangeCount</name></param>
3510 <param len="rangeCount">const <type>VkImageSubresourceRange</type>* <name>pRanges</name></param>
3511 </command>
3512 <command queues="graphics" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3513 <proto><type>void</type> <name>vkCmdClearDepthStencilImage</name></proto>
3514 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3515 <param><type>VkImage</type> <name>image</name></param>
3516 <param><type>VkImageLayout</type> <name>imageLayout</name></param>
3517 <param>const <type>VkClearDepthStencilValue</type>* <name>pDepthStencil</name></param>
3518 <param><type>uint32_t</type> <name>rangeCount</name></param>
3519 <param len="rangeCount">const <type>VkImageSubresourceRange</type>* <name>pRanges</name></param>
3520 </command>
3521 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3522 <proto><type>void</type> <name>vkCmdClearAttachments</name></proto>
3523 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3524 <param><type>uint32_t</type> <name>attachmentCount</name></param>
3525 <param len="attachmentCount">const <type>VkClearAttachment</type>* <name>pAttachments</name></param>
3526 <param><type>uint32_t</type> <name>rectCount</name></param>
3527 <param len="rectCount">const <type>VkClearRect</type>* <name>pRects</name></param>
3528 </command>
3529 <command queues="graphics" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3530 <proto><type>void</type> <name>vkCmdResolveImage</name></proto>
3531 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3532 <param><type>VkImage</type> <name>srcImage</name></param>
3533 <param><type>VkImageLayout</type> <name>srcImageLayout</name></param>
3534 <param><type>VkImage</type> <name>dstImage</name></param>
3535 <param><type>VkImageLayout</type> <name>dstImageLayout</name></param>
3536 <param><type>uint32_t</type> <name>regionCount</name></param>
3537 <param len="regionCount">const <type>VkImageResolve</type>* <name>pRegions</name></param>
3538 </command>
3539 <command queues="graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary">
3540 <proto><type>void</type> <name>vkCmdSetEvent</name></proto>
3541 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3542 <param><type>VkEvent</type> <name>event</name></param>
3543 <param><type>VkPipelineStageFlags</type> <name>stageMask</name></param>
3544 </command>
3545 <command queues="graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary">
3546 <proto><type>void</type> <name>vkCmdResetEvent</name></proto>
3547 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3548 <param><type>VkEvent</type> <name>event</name></param>
3549 <param><type>VkPipelineStageFlags</type> <name>stageMask</name></param>
3550 </command>
3551 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3552 <proto><type>void</type> <name>vkCmdWaitEvents</name></proto>
3553 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3554 <param><type>uint32_t</type> <name>eventCount</name></param>
3555 <param len="eventCount">const <type>VkEvent</type>* <name>pEvents</name></param>
3556 <param><type>VkPipelineStageFlags</type> <name>srcStageMask</name></param>
3557 <param><type>VkPipelineStageFlags</type> <name>dstStageMask</name></param>
3558 <param optional="true"><type>uint32_t</type> <name>memoryBarrierCount</name></param>
3559 <param len="memoryBarrierCount">const <type>VkMemoryBarrier</type>* <name>pMemoryBarriers</name></param>
3560 <param optional="true"><type>uint32_t</type> <name>bufferMemoryBarrierCount</name></param>
3561 <param len="bufferMemoryBarrierCount">const <type>VkBufferMemoryBarrier</type>* <name>pBufferMemoryBarriers</name></param>
3562 <param optional="true"><type>uint32_t</type> <name>imageMemoryBarrierCount</name></param>
3563 <param len="imageMemoryBarrierCount">const <type>VkImageMemoryBarrier</type>* <name>pImageMemoryBarriers</name></param>
3564 </command>
3565 <command queues="transfer,graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3566 <proto><type>void</type> <name>vkCmdPipelineBarrier</name></proto>
3567 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3568 <param><type>VkPipelineStageFlags</type> <name>srcStageMask</name></param>
3569 <param><type>VkPipelineStageFlags</type> <name>dstStageMask</name></param>
3570 <param optional="true"><type>VkDependencyFlags</type> <name>dependencyFlags</name></param>
3571 <param optional="true"><type>uint32_t</type> <name>memoryBarrierCount</name></param>
3572 <param len="memoryBarrierCount">const <type>VkMemoryBarrier</type>* <name>pMemoryBarriers</name></param>
3573 <param optional="true"><type>uint32_t</type> <name>bufferMemoryBarrierCount</name></param>
3574 <param len="bufferMemoryBarrierCount">const <type>VkBufferMemoryBarrier</type>* <name>pBufferMemoryBarriers</name></param>
3575 <param optional="true"><type>uint32_t</type> <name>imageMemoryBarrierCount</name></param>
3576 <param len="imageMemoryBarrierCount">const <type>VkImageMemoryBarrier</type>* <name>pImageMemoryBarriers</name></param>
3577 </command>
3578 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3579 <proto><type>void</type> <name>vkCmdBeginQuery</name></proto>
3580 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3581 <param><type>VkQueryPool</type> <name>queryPool</name></param>
3582 <param><type>uint32_t</type> <name>query</name></param>
3583 <param optional="true"><type>VkQueryControlFlags</type> <name>flags</name></param>
3584 </command>
3585 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3586 <proto><type>void</type> <name>vkCmdEndQuery</name></proto>
3587 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3588 <param><type>VkQueryPool</type> <name>queryPool</name></param>
3589 <param><type>uint32_t</type> <name>query</name></param>
3590 </command>
3591 <command queues="graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary">
3592 <proto><type>void</type> <name>vkCmdResetQueryPool</name></proto>
3593 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3594 <param><type>VkQueryPool</type> <name>queryPool</name></param>
3595 <param><type>uint32_t</type> <name>firstQuery</name></param>
3596 <param><type>uint32_t</type> <name>queryCount</name></param>
3597 </command>
3598 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary" pipeline="transfer">
3599 <proto><type>void</type> <name>vkCmdWriteTimestamp</name></proto>
3600 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3601 <param><type>VkPipelineStageFlagBits</type> <name>pipelineStage</name></param>
3602 <param><type>VkQueryPool</type> <name>queryPool</name></param>
3603 <param><type>uint32_t</type> <name>query</name></param>
3604 </command>
3605 <command queues="graphics,compute" renderpass="outside" cmdbufferlevel="primary,secondary" pipeline="transfer">
3606 <proto><type>void</type> <name>vkCmdCopyQueryPoolResults</name></proto>
3607 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3608 <param><type>VkQueryPool</type> <name>queryPool</name></param>
3609 <param><type>uint32_t</type> <name>firstQuery</name></param>
3610 <param><type>uint32_t</type> <name>queryCount</name></param>
3611 <param><type>VkBuffer</type> <name>dstBuffer</name></param>
3612 <param><type>VkDeviceSize</type> <name>dstOffset</name></param>
3613 <param><type>VkDeviceSize</type> <name>stride</name></param>
3614 <param optional="true"><type>VkQueryResultFlags</type> <name>flags</name></param>
3615 </command>
3616 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3617 <proto><type>void</type> <name>vkCmdPushConstants</name></proto>
3618 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3619 <param><type>VkPipelineLayout</type> <name>layout</name></param>
3620 <param><type>VkShaderStageFlags</type> <name>stageFlags</name></param>
3621 <param><type>uint32_t</type> <name>offset</name></param>
3622 <param><type>uint32_t</type> <name>size</name></param>
3623 <param len="size">const <type>void</type>* <name>pValues</name></param>
3624 </command>
3625 <command queues="graphics" renderpass="outside" cmdbufferlevel="primary" pipeline="graphics">
3626 <proto><type>void</type> <name>vkCmdBeginRenderPass</name></proto>
3627 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3628 <param>const <type>VkRenderPassBeginInfo</type>* <name>pRenderPassBegin</name></param>
3629 <param><type>VkSubpassContents</type> <name>contents</name></param>
3630 </command>
3631 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary" pipeline="graphics">
3632 <proto><type>void</type> <name>vkCmdNextSubpass</name></proto>
3633 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3634 <param><type>VkSubpassContents</type> <name>contents</name></param>
3635 </command>
3636 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary" pipeline="graphics">
3637 <proto><type>void</type> <name>vkCmdEndRenderPass</name></proto>
3638 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3639 </command>
3640 <command queues="transfer,graphics,compute" renderpass="both" cmdbufferlevel="primary">
3641 <proto><type>void</type> <name>vkCmdExecuteCommands</name></proto>
3642 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3643 <param><type>uint32_t</type> <name>commandBufferCount</name></param>
3644 <param len="commandBufferCount">const <type>VkCommandBuffer</type>* <name>pCommandBuffers</name></param>
3645 </command>
3646 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_NATIVE_WINDOW_IN_USE_KHR">
3647 <proto><type>VkResult</type> <name>vkCreateAndroidSurfaceKHR</name></proto>
3648 <param><type>VkInstance</type> <name>instance</name></param>
3649 <param>const <type>VkAndroidSurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3650 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3651 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3652 </command>
3653 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3654 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceDisplayPropertiesKHR</name></proto>
3655 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3656 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
3657 <param optional="true" len="pPropertyCount"><type>VkDisplayPropertiesKHR</type>* <name>pProperties</name></param>
3658 </command>
3659 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3660 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceDisplayPlanePropertiesKHR</name></proto>
3661 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3662 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
3663 <param optional="true" len="pPropertyCount"><type>VkDisplayPlanePropertiesKHR</type>* <name>pProperties</name></param>
3664 </command>
3665 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3666 <proto><type>VkResult</type> <name>vkGetDisplayPlaneSupportedDisplaysKHR</name></proto>
3667 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3668 <param><type>uint32_t</type> <name>planeIndex</name></param>
3669 <param optional="false,true"><type>uint32_t</type>* <name>pDisplayCount</name></param>
3670 <param optional="true" len="pDisplayCount"><type>VkDisplayKHR</type>* <name>pDisplays</name></param>
3671 </command>
3672 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3673 <proto><type>VkResult</type> <name>vkGetDisplayModePropertiesKHR</name></proto>
3674 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3675 <param><type>VkDisplayKHR</type> <name>display</name></param>
3676 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
3677 <param optional="true" len="pPropertyCount"><type>VkDisplayModePropertiesKHR</type>* <name>pProperties</name></param>
3678 </command>
3679 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INITIALIZATION_FAILED">
3680 <proto><type>VkResult</type> <name>vkCreateDisplayModeKHR</name></proto>
3681 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3682 <param externsync="true"><type>VkDisplayKHR</type> <name>display</name></param>
3683 <param>const <type>VkDisplayModeCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3684 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3685 <param><type>VkDisplayModeKHR</type>* <name>pMode</name></param>
3686 </command>
3687 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3688 <proto><type>VkResult</type> <name>vkGetDisplayPlaneCapabilitiesKHR</name></proto>
3689 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3690 <param externsync="true"><type>VkDisplayModeKHR</type> <name>mode</name></param>
3691 <param><type>uint32_t</type> <name>planeIndex</name></param>
3692 <param><type>VkDisplayPlaneCapabilitiesKHR</type>* <name>pCapabilities</name></param>
3693 </command>
3694 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3695 <proto><type>VkResult</type> <name>vkCreateDisplayPlaneSurfaceKHR</name></proto>
3696 <param><type>VkInstance</type> <name>instance</name></param>
3697 <param>const <type>VkDisplaySurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3698 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3699 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3700 </command>
3701 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_INCOMPATIBLE_DISPLAY_KHR,VK_ERROR_DEVICE_LOST,VK_ERROR_SURFACE_LOST_KHR">
3702 <proto><type>VkResult</type> <name>vkCreateSharedSwapchainsKHR</name></proto>
3703 <param><type>VkDevice</type> <name>device</name></param>
3704 <param><type>uint32_t</type> <name>swapchainCount</name></param>
3705 <param len="swapchainCount" externsync="pCreateInfos[].surface,pCreateInfos[].oldSwapchain">const <type>VkSwapchainCreateInfoKHR</type>* <name>pCreateInfos</name></param>
3706 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3707 <param len="swapchainCount"><type>VkSwapchainKHR</type>* <name>pSwapchains</name></param>
3708 </command>
3709 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3710 <proto><type>VkResult</type> <name>vkCreateMirSurfaceKHR</name></proto>
3711 <param><type>VkInstance</type> <name>instance</name></param>
3712 <param>const <type>VkMirSurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3713 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3714 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3715 </command>
3716 <command>
3717 <proto><type>VkBool32</type> <name>vkGetPhysicalDeviceMirPresentationSupportKHR</name></proto>
3718 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3719 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
3720 <param><type>MirConnection</type>* <name>connection</name></param>
3721 </command>
3722 <command>
3723 <proto><type>void</type> <name>vkDestroySurfaceKHR</name></proto>
3724 <param><type>VkInstance</type> <name>instance</name></param>
3725 <param optional="true" externsync="true"><type>VkSurfaceKHR</type> <name>surface</name></param>
3726 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3727 </command>
3728 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_SURFACE_LOST_KHR">
3729 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceSurfaceSupportKHR</name></proto>
3730 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3731 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
3732 <param><type>VkSurfaceKHR</type> <name>surface</name></param>
3733 <param><type>VkBool32</type>* <name>pSupported</name></param>
3734 </command>
3735 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_SURFACE_LOST_KHR">
3736 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceSurfaceCapabilitiesKHR</name></proto>
3737 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3738 <param><type>VkSurfaceKHR</type> <name>surface</name></param>
3739 <param><type>VkSurfaceCapabilitiesKHR</type>* <name>pSurfaceCapabilities</name></param>
3740 </command>
3741 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_SURFACE_LOST_KHR">
3742 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceSurfaceFormatsKHR</name></proto>
3743 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3744 <param><type>VkSurfaceKHR</type> <name>surface</name></param>
3745 <param optional="false,true"><type>uint32_t</type>* <name>pSurfaceFormatCount</name></param>
3746 <param optional="true" len="pSurfaceFormatCount"><type>VkSurfaceFormatKHR</type>* <name>pSurfaceFormats</name></param>
3747 </command>
3748 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_SURFACE_LOST_KHR">
3749 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceSurfacePresentModesKHR</name></proto>
3750 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3751 <param><type>VkSurfaceKHR</type> <name>surface</name></param>
3752 <param optional="false,true"><type>uint32_t</type>* <name>pPresentModeCount</name></param>
3753 <param optional="true" len="pPresentModeCount"><type>VkPresentModeKHR</type>* <name>pPresentModes</name></param>
3754 </command>
3755 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST,VK_ERROR_SURFACE_LOST_KHR,VK_ERROR_NATIVE_WINDOW_IN_USE_KHR">
3756 <proto><type>VkResult</type> <name>vkCreateSwapchainKHR</name></proto>
3757 <param><type>VkDevice</type> <name>device</name></param>
3758 <param externsync="pCreateInfo.surface,pCreateInfo.oldSwapchain">const <type>VkSwapchainCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3759 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3760 <param><type>VkSwapchainKHR</type>* <name>pSwapchain</name></param>
3761 </command>
3762 <command>
3763 <proto><type>void</type> <name>vkDestroySwapchainKHR</name></proto>
3764 <param><type>VkDevice</type> <name>device</name></param>
3765 <param optional="true" externsync="true"><type>VkSwapchainKHR</type> <name>swapchain</name></param>
3766 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3767 </command>
3768 <command successcodes="VK_SUCCESS,VK_INCOMPLETE" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3769 <proto><type>VkResult</type> <name>vkGetSwapchainImagesKHR</name></proto>
3770 <param><type>VkDevice</type> <name>device</name></param>
3771 <param><type>VkSwapchainKHR</type> <name>swapchain</name></param>
3772 <param optional="false,true"><type>uint32_t</type>* <name>pSwapchainImageCount</name></param>
3773 <param optional="true" len="pSwapchainImageCount"><type>VkImage</type>* <name>pSwapchainImages</name></param>
3774 </command>
3775 <command successcodes="VK_SUCCESS,VK_TIMEOUT,VK_NOT_READY,VK_SUBOPTIMAL_KHR" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST,VK_ERROR_OUT_OF_DATE_KHR,VK_ERROR_SURFACE_LOST_KHR">
3776 <proto><type>VkResult</type> <name>vkAcquireNextImageKHR</name></proto>
3777 <param><type>VkDevice</type> <name>device</name></param>
3778 <param externsync="true"><type>VkSwapchainKHR</type> <name>swapchain</name></param>
3779 <param><type>uint64_t</type> <name>timeout</name></param>
3780 <param optional="true" externsync="true"><type>VkSemaphore</type> <name>semaphore</name></param>
3781 <param optional="true" externsync="true"><type>VkFence</type> <name>fence</name></param>
3782 <param><type>uint32_t</type>* <name>pImageIndex</name></param>
3783 </command>
3784 <command successcodes="VK_SUCCESS,VK_SUBOPTIMAL_KHR" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_DEVICE_LOST,VK_ERROR_OUT_OF_DATE_KHR,VK_ERROR_SURFACE_LOST_KHR">
3785 <proto><type>VkResult</type> <name>vkQueuePresentKHR</name></proto>
3786 <param externsync="true"><type>VkQueue</type> <name>queue</name></param>
3787 <param externsync="pPresentInfo.pWaitSemaphores[],pPresentInfo.pSwapchains[]">const <type>VkPresentInfoKHR</type>* <name>pPresentInfo</name></param>
3788 </command>
3789 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_NATIVE_WINDOW_IN_USE_KHR">
3790 <proto><type>VkResult</type> <name>vkCreateViSurfaceNN</name></proto>
3791 <param><type>VkInstance</type> <name>instance</name></param>
3792 <param>const <type>VkViSurfaceCreateInfoNN</type>* <name>pCreateInfo</name></param>
3793 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3794 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3795 </command>
3796 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3797 <proto><type>VkResult</type> <name>vkCreateWaylandSurfaceKHR</name></proto>
3798 <param><type>VkInstance</type> <name>instance</name></param>
3799 <param>const <type>VkWaylandSurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3800 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3801 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3802 </command>
3803 <command>
3804 <proto><type>VkBool32</type> <name>vkGetPhysicalDeviceWaylandPresentationSupportKHR</name></proto>
3805 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3806 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
3807 <param>struct <type>wl_display</type>* <name>display</name></param>
3808 </command>
3809 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3810 <proto><type>VkResult</type> <name>vkCreateWin32SurfaceKHR</name></proto>
3811 <param><type>VkInstance</type> <name>instance</name></param>
3812 <param>const <type>VkWin32SurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3813 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3814 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3815 </command>
3816 <command>
3817 <proto><type>VkBool32</type> <name>vkGetPhysicalDeviceWin32PresentationSupportKHR</name></proto>
3818 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3819 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
3820 </command>
3821 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3822 <proto><type>VkResult</type> <name>vkCreateXlibSurfaceKHR</name></proto>
3823 <param><type>VkInstance</type> <name>instance</name></param>
3824 <param>const <type>VkXlibSurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3825 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3826 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3827 </command>
3828 <command>
3829 <proto><type>VkBool32</type> <name>vkGetPhysicalDeviceXlibPresentationSupportKHR</name></proto>
3830 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3831 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
3832 <param><type>Display</type>* <name>dpy</name></param>
3833 <param><type>VisualID</type> <name>visualID</name></param>
3834 </command>
3835 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3836 <proto><type>VkResult</type> <name>vkCreateXcbSurfaceKHR</name></proto>
3837 <param><type>VkInstance</type> <name>instance</name></param>
3838 <param>const <type>VkXcbSurfaceCreateInfoKHR</type>* <name>pCreateInfo</name></param>
3839 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3840 <param><type>VkSurfaceKHR</type>* <name>pSurface</name></param>
3841 </command>
3842 <command>
3843 <proto><type>VkBool32</type> <name>vkGetPhysicalDeviceXcbPresentationSupportKHR</name></proto>
3844 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3845 <param><type>uint32_t</type> <name>queueFamilyIndex</name></param>
3846 <param><type>xcb_connection_t</type>* <name>connection</name></param>
3847 <param><type>xcb_visualid_t</type> <name>visual_id</name></param>
3848 </command>
3849 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY">
3850 <proto><type>VkResult</type> <name>vkCreateDebugReportCallbackEXT</name></proto>
3851 <param><type>VkInstance</type> <name>instance</name></param>
3852 <param>const <type>VkDebugReportCallbackCreateInfoEXT</type>* <name>pCreateInfo</name></param>
3853 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3854 <param><type>VkDebugReportCallbackEXT</type>* <name>pCallback</name></param>
3855 </command>
3856 <command>
3857 <proto><type>void</type> <name>vkDestroyDebugReportCallbackEXT</name></proto>
3858 <param><type>VkInstance</type> <name>instance</name></param>
3859 <param externsync="true"><type>VkDebugReportCallbackEXT</type> <name>callback</name></param>
3860 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3861 </command>
3862 <command>
3863 <proto><type>void</type> <name>vkDebugReportMessageEXT</name></proto>
3864 <param><type>VkInstance</type> <name>instance</name></param>
3865 <param><type>VkDebugReportFlagsEXT</type> <name>flags</name></param>
3866 <param><type>VkDebugReportObjectTypeEXT</type> <name>objectType</name></param>
3867 <param><type>uint64_t</type> <name>object</name></param>
3868 <param><type>size_t</type> <name>location</name></param>
3869 <param><type>int32_t</type> <name>messageCode</name></param>
3870 <param len="null-terminated">const <type>char</type>* <name>pLayerPrefix</name></param>
3871 <param len="null-terminated">const <type>char</type>* <name>pMessage</name></param>
3872 </command>
3873 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3874 <proto><type>VkResult</type> <name>vkDebugMarkerSetObjectNameEXT</name></proto>
3875 <param><type>VkDevice</type> <name>device</name></param>
3876 <param externsync="pNameInfo.object"><type>VkDebugMarkerObjectNameInfoEXT</type>* <name>pNameInfo</name></param>
3877 </command>
3878 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3879 <proto><type>VkResult</type> <name>vkDebugMarkerSetObjectTagEXT</name></proto>
3880 <param><type>VkDevice</type> <name>device</name></param>
3881 <param externsync="pTagInfo.object"><type>VkDebugMarkerObjectTagInfoEXT</type>* <name>pTagInfo</name></param>
3882 </command>
3883 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3884 <proto><type>void</type> <name>vkCmdDebugMarkerBeginEXT</name></proto>
3885 <param><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3886 <param><type>VkDebugMarkerMarkerInfoEXT</type>* <name>pMarkerInfo</name></param>
3887 </command>
3888 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3889 <proto><type>void</type> <name>vkCmdDebugMarkerEndEXT</name></proto>
3890 <param><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3891 </command>
3892 <command queues="graphics,compute" renderpass="both" cmdbufferlevel="primary,secondary">
3893 <proto><type>void</type> <name>vkCmdDebugMarkerInsertEXT</name></proto>
3894 <param><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3895 <param><type>VkDebugMarkerMarkerInfoEXT</type>* <name>pMarkerInfo</name></param>
3896 </command>
3897 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_FORMAT_NOT_SUPPORTED">
3898 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceExternalImageFormatPropertiesNV</name></proto>
3899 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3900 <param><type>VkFormat</type> <name>format</name></param>
3901 <param><type>VkImageType</type> <name>type</name></param>
3902 <param><type>VkImageTiling</type> <name>tiling</name></param>
3903 <param><type>VkImageUsageFlags</type> <name>usage</name></param>
3904 <param optional="true"><type>VkImageCreateFlags</type> <name>flags</name></param>
3905 <param optional="true"><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>externalHandleType</name></param>
3906 <param><type>VkExternalImageFormatPropertiesNV</type>* <name>pExternalImageFormatProperties</name></param>
3907 </command>
3908 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_TOO_MANY_OBJECTS,VK_ERROR_OUT_OF_HOST_MEMORY">
3909 <proto><type>VkResult</type> <name>vkGetMemoryWin32HandleNV</name></proto>
3910 <param><type>VkDevice</type> <name>device</name></param>
3911 <param><type>VkDeviceMemory</type> <name>memory</name></param>
3912 <param><type>VkExternalMemoryHandleTypeFlagsNV</type> <name>handleType</name></param>
3913 <param><type>HANDLE</type>* <name>pHandle</name></param>
3914 </command>
3915 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3916 <proto><type>void</type> <name>vkCmdDrawIndirectCountAMD</name></proto>
3917 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3918 <param><type>VkBuffer</type> <name>buffer</name></param>
3919 <param><type>VkDeviceSize</type> <name>offset</name></param>
3920 <param><type>VkBuffer</type> <name>countBuffer</name></param>
3921 <param><type>VkDeviceSize</type> <name>countBufferOffset</name></param>
3922 <param><type>uint32_t</type> <name>maxDrawCount</name></param>
3923 <param><type>uint32_t</type> <name>stride</name></param>
3924 </command>
3925 <command queues="graphics" renderpass="inside" cmdbufferlevel="primary,secondary" pipeline="graphics">
3926 <proto><type>void</type> <name>vkCmdDrawIndexedIndirectCountAMD</name></proto>
3927 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3928 <param><type>VkBuffer</type> <name>buffer</name></param>
3929 <param><type>VkDeviceSize</type> <name>offset</name></param>
3930 <param><type>VkBuffer</type> <name>countBuffer</name></param>
3931 <param><type>VkDeviceSize</type> <name>countBufferOffset</name></param>
3932 <param><type>uint32_t</type> <name>maxDrawCount</name></param>
3933 <param><type>uint32_t</type> <name>stride</name></param>
3934 </command>
3935 <command queues="graphics,compute" renderpass="inside" cmdbufferlevel="primary,secondary">
3936 <proto><type>void</type> <name>vkCmdProcessCommandsNVX</name></proto>
3937 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3938 <param>const <type>VkCmdProcessCommandsInfoNVX</type>* <name>pProcessCommandsInfo</name></param>
3939 </command>
3940 <command queues="graphics,compute" renderpass="inside" cmdbufferlevel="secondary">
3941 <proto><type>void</type> <name>vkCmdReserveSpaceForCommandsNVX</name></proto>
3942 <param externsync="true"><type>VkCommandBuffer</type> <name>commandBuffer</name></param>
3943 <param>const <type>VkCmdReserveSpaceForCommandsInfoNVX</type>* <name>pReserveSpaceInfo</name></param>
3944 </command>
3945 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3946 <proto><type>VkResult</type> <name>vkCreateIndirectCommandsLayoutNVX</name></proto>
3947 <param><type>VkDevice</type> <name>device</name></param>
3948 <param>const <type>VkIndirectCommandsLayoutCreateInfoNVX</type>* <name>pCreateInfo</name></param>
3949 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3950 <param><type>VkIndirectCommandsLayoutNVX</type>* <name>pIndirectCommandsLayout</name></param>
3951 </command>
3952 <command>
3953 <proto><type>void</type> <name>vkDestroyIndirectCommandsLayoutNVX</name></proto>
3954 <param><type>VkDevice</type> <name>device</name></param>
3955 <param><type>VkIndirectCommandsLayoutNVX</type> <name>indirectCommandsLayout</name></param>
3956 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3957 </command>
3958 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3959 <proto><type>VkResult</type> <name>vkCreateObjectTableNVX</name></proto>
3960 <param><type>VkDevice</type> <name>device</name></param>
3961 <param>const <type>VkObjectTableCreateInfoNVX</type>* <name>pCreateInfo</name></param>
3962 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3963 <param><type>VkObjectTableNVX</type>* <name>pObjectTable</name></param>
3964 </command>
3965 <command>
3966 <proto><type>void</type> <name>vkDestroyObjectTableNVX</name></proto>
3967 <param><type>VkDevice</type> <name>device</name></param>
3968 <param externsync="true"><type>VkObjectTableNVX</type> <name>objectTable</name></param>
3969 <param optional="true">const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
3970 </command>
3971 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3972 <proto><type>VkResult</type> <name>vkRegisterObjectsNVX</name></proto>
3973 <param><type>VkDevice</type> <name>device</name></param>
3974 <param externsync="true"><type>VkObjectTableNVX</type> <name>objectTable</name></param>
3975 <param><type>uint32_t</type> <name>objectCount</name></param>
3976 <param len="objectCount">const <type>VkObjectTableEntryNVX</type>* const* <name>ppObjectTableEntries</name></param>
3977 <param len="objectCount">const <type>uint32_t</type>* <name>pObjectIndices</name></param>
3978 </command>
3979 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY">
3980 <proto><type>VkResult</type> <name>vkUnregisterObjectsNVX</name></proto>
3981 <param><type>VkDevice</type> <name>device</name></param>
3982 <param externsync="true"><type>VkObjectTableNVX</type> <name>objectTable</name></param>
3983 <param><type>uint32_t</type> <name>objectCount</name></param>
3984 <param len="objectCount">const <type>VkObjectEntryTypeNVX</type>* <name>pObjectEntryTypes</name></param>
3985 <param len="objectCount">const <type>uint32_t</type>* <name>pObjectIndices</name></param>
3986 </command>
3987 <command>
3988 <proto><type>void</type> <name>vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX</name></proto>
3989 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3990 <param><type>VkDeviceGeneratedCommandsFeaturesNVX</type>* <name>pFeatures</name></param>
3991 <param><type>VkDeviceGeneratedCommandsLimitsNVX</type>* <name>pLimits</name></param>
3992 </command>
3993 <command>
3994 <proto><type>void</type> <name>vkGetPhysicalDeviceFeatures2KHR</name></proto>
3995 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
3996 <param><type>VkPhysicalDeviceFeatures2KHR</type>* <name>pFeatures</name></param>
3997 </command>
3998 <command>
3999 <proto><type>void</type> <name>vkGetPhysicalDeviceProperties2KHR</name></proto>
4000 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4001 <param><type>VkPhysicalDeviceProperties2KHR</type>* <name>pProperties</name></param>
4002 </command>
4003 <command>
4004 <proto><type>void</type> <name>vkGetPhysicalDeviceFormatProperties2KHR</name></proto>
4005 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4006 <param><type>VkFormat</type> <name>format</name></param>
4007 <param><type>VkFormatProperties2KHR</type>* <name>pFormatProperties</name></param>
4008 </command>
4009 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_FORMAT_NOT_SUPPORTED">
4010 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceImageFormatProperties2KHR</name></proto>
4011 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4012 <param>const <type>VkPhysicalDeviceImageFormatInfo2KHR</type>* <name>pImageFormatInfo</name></param>
4013 <param><type>VkImageFormatProperties2KHR</type>* <name>pImageFormatProperties</name></param>
4014 </command>
4015 <command>
4016 <proto><type>void</type> <name>vkGetPhysicalDeviceQueueFamilyProperties2KHR</name></proto>
4017 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4018 <param optional="false,true"><type>uint32_t</type>* <name>pQueueFamilyPropertyCount</name></param>
4019 <param optional="true" len="pQueueFamilyPropertyCount"><type>VkQueueFamilyProperties2KHR</type>* <name>pQueueFamilyProperties</name></param>
4020 </command>
4021 <command>
4022 <proto><type>void</type> <name>vkGetPhysicalDeviceMemoryProperties2KHR</name></proto>
4023 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4024 <param><type>VkPhysicalDeviceMemoryProperties2KHR</type>* <name>pMemoryProperties</name></param>
4025 </command>
4026 <command>
4027 <proto><type>void</type> <name>vkGetPhysicalDeviceSparseImageFormatProperties2KHR</name></proto>
4028 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4029 <param>const <type>VkPhysicalDeviceSparseImageFormatInfo2KHR</type>* <name>pFormatInfo</name></param>
4030 <param optional="false,true"><type>uint32_t</type>* <name>pPropertyCount</name></param>
4031 <param optional="true" len="pPropertyCount"><type>VkSparseImageFormatProperties2KHR</type>* <name>pProperties</name></param>
4032 </command>
4033 <command>
4034 <proto><type>void</type> <name>vkTrimCommandPoolKHR</name></proto>
4035 <param><type>VkDevice</type> <name>device</name></param>
4036 <param externsync="true"><type>VkCommandPool</type> <name>commandPool</name></param>
4037 <param optional="true"><type>VkCommandPoolTrimFlagsKHR</type> <name>flags</name></param>
4038 </command>
4039 <command successcodes="VK_SUCCESS">
4040 <proto><type>VkResult</type> <name>vkReleaseDisplayEXT</name></proto>
4041 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4042 <param><type>VkDisplayKHR</type> <name>display</name></param>
4043 </command>
4044 <command successcodes="VK_SUCCESS">
4045 <proto><type>VkResult</type> <name>vkAcquireXlibDisplayEXT</name></proto>
4046 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4047 <param><type>Display</type>* <name>dpy</name></param>
4048 <param><type>VkDisplayKHR</type> <name>display</name></param>
4049 </command>
4050 <command successcodes="VK_SUCCESS">
4051 <proto><type>VkResult</type> <name>vkGetRandROutputDisplayEXT</name></proto>
4052 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4053 <param><type>Display</type>* <name>dpy</name></param>
4054 <param><type>RROutput</type> <name>rrOutput</name></param>
4055 <param><type>VkDisplayKHR</type>* <name>pDisplay</name></param>
4056 </command>
4057 <command successcodes="VK_SUCCESS">
4058 <proto><type>VkResult</type> <name>vkDisplayPowerControlEXT</name></proto>
4059 <param><type>VkDevice</type> <name>device</name></param>
4060 <param><type>VkDisplayKHR</type> <name>display</name></param>
4061 <param>const <type>VkDisplayPowerInfoEXT</type>* <name>pDisplayPowerInfo</name></param>
4062 </command>
4063 <command successcodes="VK_SUCCESS">
4064 <proto><type>VkResult</type> <name>vkRegisterDeviceEventEXT</name></proto>
4065 <param><type>VkDevice</type> <name>device</name></param>
4066 <param>const <type>VkDeviceEventInfoEXT</type>* <name>pDeviceEventInfo</name></param>
4067 <param>const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
4068 <param><type>VkFence</type>* <name>pFence</name></param>
4069 </command>
4070 <command successcodes="VK_SUCCESS">
4071 <proto><type>VkResult</type> <name>vkRegisterDisplayEventEXT</name></proto>
4072 <param><type>VkDevice</type> <name>device</name></param>
4073 <param><type>VkDisplayKHR</type> <name>display</name></param>
4074 <param>const <type>VkDisplayEventInfoEXT</type>* <name>pDisplayEventInfo</name></param>
4075 <param>const <type>VkAllocationCallbacks</type>* <name>pAllocator</name></param>
4076 <param><type>VkFence</type>* <name>pFence</name></param>
4077 </command>
4078 <command successcodes="VK_SUCCESS,VK_ERROR_DEVICE_LOST,VK_ERROR_OUT_OF_DATE_KHR">
4079 <proto><type>VkResult</type> <name>vkGetSwapchainCounterEXT</name></proto>
4080 <param><type>VkDevice</type> <name>device</name></param>
4081 <param><type>VkSwapchainKHR</type> <name>swapchain</name></param>
4082 <param><type>VkSurfaceCounterFlagBitsEXT</type> <name>counter</name></param>
4083 <param><type>uint64_t</type>* <name>pCounterValue</name></param>
4084 </command>
4085 <command successcodes="VK_SUCCESS" errorcodes="VK_ERROR_OUT_OF_HOST_MEMORY,VK_ERROR_OUT_OF_DEVICE_MEMORY,VK_ERROR_SURFACE_LOST_KHR">
4086 <proto><type>VkResult</type> <name>vkGetPhysicalDeviceSurfaceCapabilities2EXT</name></proto>
4087 <param><type>VkPhysicalDevice</type> <name>physicalDevice</name></param>
4088 <param><type>VkSurfaceKHR</type> <name>surface</name></param>
4089 <param><type>VkSurfaceCapabilities2EXT</type>* <name>pSurfaceCapabilities</name></param>
4090 </command>
4091 </commands>
4092
4093 <!-- SECTION: Vulkan API interface definitions -->
4094 <feature api="vulkan" name="VK_VERSION_1_0" number="1.0">
4095 <require comment="Header boilerplate">
4096 <type name="vk_platform"/>
4097 </require>
4098 <require comment="API version">
4099 <type name="VK_API_VERSION"/>
4100 <type name="VK_API_VERSION_1_0"/>
4101 <type name="VK_VERSION_MAJOR"/>
4102 <type name="VK_VERSION_MINOR"/>
4103 <type name="VK_VERSION_PATCH"/>
4104 <type name="VK_HEADER_VERSION"/>
4105 </require>
4106 <require comment="API constants">
4107 <enum name="VK_LOD_CLAMP_NONE"/>
4108 <enum name="VK_REMAINING_MIP_LEVELS"/>
4109 <enum name="VK_REMAINING_ARRAY_LAYERS"/>
4110 <enum name="VK_WHOLE_SIZE"/>
4111 <enum name="VK_ATTACHMENT_UNUSED"/>
4112 <enum name="VK_TRUE"/>
4113 <enum name="VK_FALSE"/>
4114 <type name="VK_NULL_HANDLE"/>
4115 <enum name="VK_QUEUE_FAMILY_IGNORED"/>
4116 <enum name="VK_SUBPASS_EXTERNAL"/>
4117 <type name="VkPipelineCacheHeaderVersion"/>
4118 </require>
4119 <require comment="Device initialization">
4120 <command name="vkCreateInstance"/>
4121 <command name="vkDestroyInstance"/>
4122 <command name="vkEnumeratePhysicalDevices"/>
4123 <command name="vkGetPhysicalDeviceFeatures"/>
4124 <command name="vkGetPhysicalDeviceFormatProperties"/>
4125 <command name="vkGetPhysicalDeviceImageFormatProperties"/>
4126 <command name="vkGetPhysicalDeviceProperties"/>
4127 <command name="vkGetPhysicalDeviceQueueFamilyProperties"/>
4128 <command name="vkGetPhysicalDeviceMemoryProperties"/>
4129 <command name="vkGetInstanceProcAddr"/>
4130 <command name="vkGetDeviceProcAddr"/>
4131 </require>
4132 <require comment="Device commands">
4133 <command name="vkCreateDevice"/>
4134 <command name="vkDestroyDevice"/>
4135 </require>
4136 <require comment="Extension discovery commands">
4137 <command name="vkEnumerateInstanceExtensionProperties"/>
4138 <command name="vkEnumerateDeviceExtensionProperties"/>
4139 </require>
4140 <require comment="Layer discovery commands">
4141 <command name="vkEnumerateInstanceLayerProperties"/>
4142 <command name="vkEnumerateDeviceLayerProperties"/>
4143 </require>
4144 <require comment="queue commands">
4145 <command name="vkGetDeviceQueue"/>
4146 <command name="vkQueueSubmit"/>
4147 <command name="vkQueueWaitIdle"/>
4148 <command name="vkDeviceWaitIdle"/>
4149 </require>
4150 <require comment="Memory commands">
4151 <command name="vkAllocateMemory"/>
4152 <command name="vkFreeMemory"/>
4153 <command name="vkMapMemory"/>
4154 <command name="vkUnmapMemory"/>
4155 <command name="vkFlushMappedMemoryRanges"/>
4156 <command name="vkInvalidateMappedMemoryRanges"/>
4157 <command name="vkGetDeviceMemoryCommitment"/>
4158 </require>
4159 <require comment="Memory management API commands">
4160 <command name="vkBindBufferMemory"/>
4161 <command name="vkBindImageMemory"/>
4162 <command name="vkGetBufferMemoryRequirements"/>
4163 <command name="vkGetImageMemoryRequirements"/>
4164 </require>
4165 <require comment="Sparse resource memory management API commands">
4166 <command name="vkGetImageSparseMemoryRequirements"/>
4167 <command name="vkGetPhysicalDeviceSparseImageFormatProperties"/>
4168 <command name="vkQueueBindSparse"/>
4169 </require>
4170 <require comment="Fence commands">
4171 <command name="vkCreateFence"/>
4172 <command name="vkDestroyFence"/>
4173 <command name="vkResetFences"/>
4174 <command name="vkGetFenceStatus"/>
4175 <command name="vkWaitForFences"/>
4176 </require>
4177 <require comment="Queue semaphore commands">
4178 <command name="vkCreateSemaphore"/>
4179 <command name="vkDestroySemaphore"/>
4180 </require>
4181 <require comment="Event commands">
4182 <command name="vkCreateEvent"/>
4183 <command name="vkDestroyEvent"/>
4184 <command name="vkGetEventStatus"/>
4185 <command name="vkSetEvent"/>
4186 <command name="vkResetEvent"/>
4187 </require>
4188 <require comment="Query commands">
4189 <command name="vkCreateQueryPool"/>
4190 <command name="vkDestroyQueryPool"/>
4191 <command name="vkGetQueryPoolResults"/>
4192 </require>
4193 <require comment="Buffer commands">
4194 <command name="vkCreateBuffer"/>
4195 <command name="vkDestroyBuffer"/>
4196 </require>
4197 <require comment="Buffer view commands">
4198 <command name="vkCreateBufferView"/>
4199 <command name="vkDestroyBufferView"/>
4200 </require>
4201 <require comment="Image commands">
4202 <command name="vkCreateImage"/>
4203 <command name="vkDestroyImage"/>
4204 <command name="vkGetImageSubresourceLayout"/>
4205 </require>
4206 <require comment="Image view commands">
4207 <command name="vkCreateImageView"/>
4208 <command name="vkDestroyImageView"/>
4209 </require>
4210 <require comment="Shader commands">
4211 <command name="vkCreateShaderModule"/>
4212 <command name="vkDestroyShaderModule"/>
4213 </require>
4214 <require comment="Pipeline Cache commands">
4215 <command name="vkCreatePipelineCache"/>
4216 <command name="vkDestroyPipelineCache"/>
4217 <command name="vkGetPipelineCacheData"/>
4218 <command name="vkMergePipelineCaches"/>
4219 </require>
4220 <require comment="Pipeline commands">
4221 <command name="vkCreateGraphicsPipelines"/>
4222 <command name="vkCreateComputePipelines"/>
4223 <command name="vkDestroyPipeline"/>
4224 </require>
4225 <require comment="Pipeline layout commands">
4226 <command name="vkCreatePipelineLayout"/>
4227 <command name="vkDestroyPipelineLayout"/>
4228 </require>
4229 <require comment="Sampler commands">
4230 <command name="vkCreateSampler"/>
4231 <command name="vkDestroySampler"/>
4232 </require>
4233 <require comment="Descriptor set commands">
4234 <command name="vkCreateDescriptorSetLayout"/>
4235 <command name="vkDestroyDescriptorSetLayout"/>
4236 <command name="vkCreateDescriptorPool"/>
4237 <command name="vkDestroyDescriptorPool"/>
4238 <command name="vkResetDescriptorPool"/>
4239 <command name="vkAllocateDescriptorSets"/>
4240 <command name="vkFreeDescriptorSets"/>
4241 <command name="vkUpdateDescriptorSets"/>
4242 </require>
4243 <require comment="Pass commands">
4244 <command name="vkCreateFramebuffer"/>
4245 <command name="vkDestroyFramebuffer"/>
4246 <command name="vkCreateRenderPass"/>
4247 <command name="vkDestroyRenderPass"/>
4248 <command name="vkGetRenderAreaGranularity"/>
4249 </require>
4250 <require comment="Command pool commands">
4251 <command name="vkCreateCommandPool"/>
4252 <command name="vkDestroyCommandPool"/>
4253 <command name="vkResetCommandPool"/>
4254 </require>
4255 <require comment="Command buffer commands">
4256 <command name="vkAllocateCommandBuffers"/>
4257 <command name="vkFreeCommandBuffers"/>
4258 <command name="vkBeginCommandBuffer"/>
4259 <command name="vkEndCommandBuffer"/>
4260 <command name="vkResetCommandBuffer"/>
4261 </require>
4262 <require comment="Command buffer building commands">
4263 <command name="vkCmdBindPipeline"/>
4264 <command name="vkCmdSetViewport"/>
4265 <command name="vkCmdSetScissor"/>
4266 <command name="vkCmdSetLineWidth"/>
4267 <command name="vkCmdSetDepthBias"/>
4268 <command name="vkCmdSetBlendConstants"/>
4269 <command name="vkCmdSetDepthBounds"/>
4270 <command name="vkCmdSetStencilCompareMask"/>
4271 <command name="vkCmdSetStencilWriteMask"/>
4272 <command name="vkCmdSetStencilReference"/>
4273 <command name="vkCmdBindDescriptorSets"/>
4274 <command name="vkCmdBindIndexBuffer"/>
4275 <command name="vkCmdBindVertexBuffers"/>
4276 <command name="vkCmdDraw"/>
4277 <command name="vkCmdDrawIndexed"/>
4278 <command name="vkCmdDrawIndirect"/>
4279 <command name="vkCmdDrawIndexedIndirect"/>
4280 <command name="vkCmdDispatch"/>
4281 <command name="vkCmdDispatchIndirect"/>
4282 <command name="vkCmdCopyBuffer"/>
4283 <command name="vkCmdCopyImage"/>
4284 <command name="vkCmdBlitImage"/>
4285 <command name="vkCmdCopyBufferToImage"/>
4286 <command name="vkCmdCopyImageToBuffer"/>
4287 <command name="vkCmdUpdateBuffer"/>
4288 <command name="vkCmdFillBuffer"/>
4289 <command name="vkCmdClearColorImage"/>
4290 <command name="vkCmdClearDepthStencilImage"/>
4291 <command name="vkCmdClearAttachments"/>
4292 <command name="vkCmdResolveImage"/>
4293 <command name="vkCmdSetEvent"/>
4294 <command name="vkCmdResetEvent"/>
4295 <command name="vkCmdWaitEvents"/>
4296 <command name="vkCmdPipelineBarrier"/>
4297 <command name="vkCmdBeginQuery"/>
4298 <command name="vkCmdEndQuery"/>
4299 <command name="vkCmdResetQueryPool"/>
4300 <command name="vkCmdWriteTimestamp"/>
4301 <command name="vkCmdCopyQueryPoolResults"/>
4302 <command name="vkCmdPushConstants"/>
4303 <command name="vkCmdBeginRenderPass"/>
4304 <command name="vkCmdNextSubpass"/>
4305 <command name="vkCmdEndRenderPass"/>
4306 <command name="vkCmdExecuteCommands"/>
4307 </require>
4308 <require comment="Types not directly used by the API">
4309 <!-- Include <type name="typename"/> here for e.g. structs that
4310 are not parameter types of commands, but still need to be
4311 defined in the API.
4312 -->
4313 <type name="VkBufferMemoryBarrier"/>
4314 <type name="VkDispatchIndirectCommand"/>
4315 <type name="VkDrawIndexedIndirectCommand"/>
4316 <type name="VkDrawIndirectCommand"/>
4317 <type name="VkImageMemoryBarrier"/>
4318 <type name="VkMemoryBarrier"/>
4319 </require>
4320 </feature>
4321
4322 <!-- SECTION: Vulkan extension interface definitions -->
4323 <extensions>
4324 <!-- WSI extensions -->
4325 <extension name="VK_KHR_surface" number="1" type="instance" supported="vulkan">
4326 <require>
4327 <enum value="25" name="VK_KHR_SURFACE_SPEC_VERSION"/>
4328 <enum value="&quot;VK_KHR_surface&quot;" name="VK_KHR_SURFACE_EXTENSION_NAME"/>
4329 <enum offset="0" dir="-" extends="VkResult" name="VK_ERROR_SURFACE_LOST_KHR"/>
4330 <enum offset="1" dir="-" extends="VkResult" name="VK_ERROR_NATIVE_WINDOW_IN_USE_KHR"/>
4331 <enum value="VK_COLOR_SPACE_SRGB_NONLINEAR_KHR" name="VK_COLORSPACE_SRGB_NONLINEAR_KHR"/>
4332 <command name="vkDestroySurfaceKHR"/>
4333 <command name="vkGetPhysicalDeviceSurfaceSupportKHR"/>
4334 <command name="vkGetPhysicalDeviceSurfaceCapabilitiesKHR"/>
4335 <command name="vkGetPhysicalDeviceSurfaceFormatsKHR"/>
4336 <command name="vkGetPhysicalDeviceSurfacePresentModesKHR"/>
4337 </require>
4338 </extension>
4339 <extension name="VK_KHR_swapchain" number="2" type="device" requires="VK_KHR_surface" supported="vulkan">
4340 <require>
4341 <enum value="68" name="VK_KHR_SWAPCHAIN_SPEC_VERSION"/>
4342 <enum value="&quot;VK_KHR_swapchain&quot;" name="VK_KHR_SWAPCHAIN_EXTENSION_NAME"/>
4343 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR"/>
4344 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PRESENT_INFO_KHR"/>
4345 <enum offset="2" extends="VkImageLayout" name="VK_IMAGE_LAYOUT_PRESENT_SRC_KHR"/>
4346 <enum offset="3" extends="VkResult" name="VK_SUBOPTIMAL_KHR"/>
4347 <enum offset="4" dir="-" extends="VkResult" name="VK_ERROR_OUT_OF_DATE_KHR"/>
4348 <command name="vkCreateSwapchainKHR"/>
4349 <command name="vkDestroySwapchainKHR"/>
4350 <command name="vkGetSwapchainImagesKHR"/>
4351 <command name="vkAcquireNextImageKHR"/>
4352 <command name="vkQueuePresentKHR"/>
4353 </require>
4354 </extension>
4355 <extension name="VK_KHR_display" number="3" type="instance" requires="VK_KHR_surface" supported="vulkan">
4356 <require>
4357 <enum value="21" name="VK_KHR_DISPLAY_SPEC_VERSION"/>
4358 <enum value="&quot;VK_KHR_display&quot;" name="VK_KHR_DISPLAY_EXTENSION_NAME"/>
4359 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR"/>
4360 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR"/>
4361 <type name="VkDisplayPlaneAlphaFlagsKHR"/>
4362 <type name="VkDisplayPlaneAlphaFlagBitsKHR"/>
4363 <type name="VkDisplayPropertiesKHR"/>
4364 <type name="VkDisplayModeParametersKHR"/>
4365 <type name="VkDisplayModePropertiesKHR"/>
4366 <type name="VkDisplayModeCreateInfoKHR"/>
4367 <type name="VkDisplayPlaneCapabilitiesKHR"/>
4368 <type name="VkDisplayPlanePropertiesKHR"/>
4369 <type name="VkDisplaySurfaceCreateInfoKHR"/>
4370 <command name="vkGetPhysicalDeviceDisplayPropertiesKHR"/>
4371 <command name="vkGetPhysicalDeviceDisplayPlanePropertiesKHR"/>
4372 <command name="vkGetDisplayPlaneSupportedDisplaysKHR"/>
4373 <command name="vkGetDisplayModePropertiesKHR"/>
4374 <command name="vkCreateDisplayModeKHR"/>
4375 <command name="vkGetDisplayPlaneCapabilitiesKHR"/>
4376 <command name="vkCreateDisplayPlaneSurfaceKHR"/>
4377 </require>
4378 </extension>
4379 <extension name="VK_KHR_display_swapchain" number="4" type="device" requires="VK_KHR_swapchain,VK_KHR_display" supported="vulkan">
4380 <require>
4381 <enum value="9" name="VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION"/>
4382 <enum value="&quot;VK_KHR_display_swapchain&quot;" name="VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME"/>
4383 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR"/>
4384 <enum offset="1" dir="-" extends="VkResult" name="VK_ERROR_INCOMPATIBLE_DISPLAY_KHR"/>
4385 <type name="VkDisplayPresentInfoKHR"/>
4386 <command name="vkCreateSharedSwapchainsKHR"/>
4387 </require>
4388 </extension>
4389 <extension name="VK_KHR_xlib_surface" number="5" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_XLIB_KHR" supported="vulkan">
4390 <require>
4391 <enum value="6" name="VK_KHR_XLIB_SURFACE_SPEC_VERSION"/>
4392 <enum value="&quot;VK_KHR_xlib_surface&quot;" name="VK_KHR_XLIB_SURFACE_EXTENSION_NAME"/>
4393 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR"/>
4394 <type name="VkXlibSurfaceCreateFlagsKHR"/>
4395 <type name="VkXlibSurfaceCreateInfoKHR"/>
4396 <command name="vkCreateXlibSurfaceKHR"/>
4397 <command name="vkGetPhysicalDeviceXlibPresentationSupportKHR"/>
4398 </require>
4399 </extension>
4400 <extension name="VK_KHR_xcb_surface" number="6" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_XCB_KHR" supported="vulkan">
4401 <require>
4402 <enum value="6" name="VK_KHR_XCB_SURFACE_SPEC_VERSION"/>
4403 <enum value="&quot;VK_KHR_xcb_surface&quot;" name="VK_KHR_XCB_SURFACE_EXTENSION_NAME"/>
4404 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR"/>
4405 <type name="VkXcbSurfaceCreateFlagsKHR"/>
4406 <type name="VkXcbSurfaceCreateInfoKHR"/>
4407 <command name="vkCreateXcbSurfaceKHR"/>
4408 <command name="vkGetPhysicalDeviceXcbPresentationSupportKHR"/>
4409 </require>
4410 </extension>
4411 <extension name="VK_KHR_wayland_surface" number="7" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_WAYLAND_KHR" supported="vulkan">
4412 <require>
4413 <enum value="5" name="VK_KHR_WAYLAND_SURFACE_SPEC_VERSION"/>
4414 <enum value="&quot;VK_KHR_wayland_surface&quot;" name="VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME"/>
4415 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR"/>
4416 <type name="VkWaylandSurfaceCreateFlagsKHR"/>
4417 <type name="VkWaylandSurfaceCreateInfoKHR"/>
4418 <command name="vkCreateWaylandSurfaceKHR"/>
4419 <command name="vkGetPhysicalDeviceWaylandPresentationSupportKHR"/>
4420 </require>
4421 </extension>
4422 <extension name="VK_KHR_mir_surface" number="8" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_MIR_KHR" supported="vulkan">
4423 <require>
4424 <enum value="4" name="VK_KHR_MIR_SURFACE_SPEC_VERSION"/>
4425 <enum value="&quot;VK_KHR_mir_surface&quot;" name="VK_KHR_MIR_SURFACE_EXTENSION_NAME"/>
4426 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_MIR_SURFACE_CREATE_INFO_KHR"/>
4427 <type name="VkMirSurfaceCreateFlagsKHR"/>
4428 <type name="VkMirSurfaceCreateInfoKHR"/>
4429 <command name="vkCreateMirSurfaceKHR"/>
4430 <command name="vkGetPhysicalDeviceMirPresentationSupportKHR"/>
4431 </require>
4432 </extension>
4433 <extension name="VK_KHR_android_surface" number="9" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_ANDROID_KHR" supported="vulkan">
4434 <require>
4435 <enum value="6" name="VK_KHR_ANDROID_SURFACE_SPEC_VERSION"/>
4436 <enum value="&quot;VK_KHR_android_surface&quot;" name="VK_KHR_ANDROID_SURFACE_EXTENSION_NAME"/>
4437 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR"/>
4438 <type name="VkAndroidSurfaceCreateFlagsKHR"/>
4439 <type name="VkAndroidSurfaceCreateInfoKHR"/>
4440 <command name="vkCreateAndroidSurfaceKHR"/>
4441 </require>
4442 </extension>
4443 <extension name="VK_KHR_win32_surface" number="10" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_WIN32_KHR" supported="vulkan">
4444 <require>
4445 <enum value="5" name="VK_KHR_WIN32_SURFACE_SPEC_VERSION"/>
4446 <enum value="&quot;VK_KHR_win32_surface&quot;" name="VK_KHR_WIN32_SURFACE_EXTENSION_NAME"/>
4447 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR"/>
4448 <type name="VkWin32SurfaceCreateFlagsKHR"/>
4449 <type name="VkWin32SurfaceCreateInfoKHR"/>
4450 <command name="vkCreateWin32SurfaceKHR"/>
4451 <command name="vkGetPhysicalDeviceWin32PresentationSupportKHR"/>
4452 </require>
4453 </extension>
4454 <extension name="VK_ANDROID_native_buffer" number="11" supported="disabled">
4455 <require>
4456 <enum value="4" name="VK_ANDROID_NATIVE_BUFFER_SPEC_VERSION"/>
4457 <enum value="11" name="VK_ANDROID_NATIVE_BUFFER_NUMBER"/>
4458 <enum value="&quot;VK_ANDROID_native_buffer&quot;" name="VK_ANDROID_NATIVE_BUFFER_NAME"/>
4459 </require>
4460 </extension>
4461 <extension name="VK_EXT_debug_report" number="12" type="instance" author="Google, Inc." contact="Courtney Goeltzenleuchter @courtney" supported="vulkan">
4462 <require>
4463 <enum value="4" name="VK_EXT_DEBUG_REPORT_SPEC_VERSION"/>
4464 <enum value="&quot;VK_EXT_debug_report&quot;" name="VK_EXT_DEBUG_REPORT_EXTENSION_NAME"/>
4465 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT"/>
4466 <enum offset="1" dir="-" extends="VkResult" name="VK_ERROR_VALIDATION_FAILED_EXT"/>
4467 <enum value="VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT" name="VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT"/>
4468 <type name="VkDebugReportObjectTypeEXT"/>
4469 <type name="VkDebugReportErrorEXT"/>
4470 <command name="vkCreateDebugReportCallbackEXT"/>
4471 <command name="vkDestroyDebugReportCallbackEXT"/>
4472 <command name="vkDebugReportMessageEXT"/>
4473 </require>
4474 </extension>
4475 <extension name="VK_NV_glsl_shader" number="13" type="device" author="NVIDIA" contact="Piers Daniell @pdaniell" supported="vulkan">
4476 <require>
4477 <enum value="1" name="VK_NV_GLSL_SHADER_SPEC_VERSION"/>
4478 <enum value="&quot;VK_NV_glsl_shader&quot;" name="VK_NV_GLSL_SHADER_EXTENSION_NAME"/>
4479 <enum offset="0" dir="-" extends="VkResult" name="VK_ERROR_INVALID_SHADER_NV"/>
4480 </require>
4481 </extension>
4482 <extension name="VK_NV_extension_1" number="14" author="NVIDIA" contact="Piers Daniell @pdaniell" supported="disabled">
4483 <require>
4484 <enum value="0" name="VK_NV_EXTENSION_1_SPEC_VERSION"/>
4485 <enum value="&quot;VK_NV_extension_1&quot;" name="VK_NV_EXTENSION_1_EXTENSION_NAME"/>
4486 <enum offset="0" dir="-" extends="VkResult" name="VK_NV_EXTENSION_1_ERROR"/>
4487 </require>
4488 </extension>
4489 <extension name="VK_KHR_sampler_mirror_clamp_to_edge" type="device" number="15" author="KHR" contact="Tobias Hector @tobias" supported="vulkan">
4490 <require>
4491 <enum value="1" name="VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_SPEC_VERSION"/>
4492 <enum value="&quot;VK_KHR_sampler_mirror_clamp_to_edge&quot;" name="VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME"/>
4493 <enum value="4" extends="VkSamplerAddressMode" name="VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE" comment="Note that this defines what was previously a core enum, and so uses the 'value' attribute rather than 'offset', and does not have a suffix. This is a special case, and should not be repeated"/>
4494 </require>
4495 </extension>
4496 <extension name="VK_IMG_filter_cubic" number="16" type="device" author="IMG" contact="Tobias Hector @tobias" supported="vulkan">
4497 <require>
4498 <enum value="1" name="VK_IMG_FILTER_CUBIC_SPEC_VERSION"/>
4499 <enum value="&quot;VK_IMG_filter_cubic&quot;" name="VK_IMG_FILTER_CUBIC_EXTENSION_NAME"/>
4500 <enum offset="0" extends="VkFilter" name="VK_FILTER_CUBIC_IMG"/>
4501 <enum bitpos="13" extends="VkFormatFeatureFlagBits" name="VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG" comment="Format can be filtered with VK_FILTER_CUBIC_IMG when being sampled"/>
4502 </require>
4503 </extension>
4504 <extension name="VK_AMD_extension_17" number="17" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4505 <require>
4506 <enum value="0" name="VK_AMD_EXTENSION_17_SPEC_VERSION"/>
4507 <enum value="&quot;VK_AMD_extension_17&quot;" name="VK_AMD_EXTENSION_17_EXTENSION_NAME"/>
4508 </require>
4509 </extension>
4510 <extension name="VK_AMD_extension_18" number="18" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4511 <require>
4512 <enum value="0" name="VK_AMD_EXTENSION_18_SPEC_VERSION"/>
4513 <enum value="&quot;VK_AMD_extension_18&quot;" name="VK_AMD_EXTENSION_18_EXTENSION_NAME"/>
4514 </require>
4515 </extension>
4516 <extension name="VK_AMD_rasterization_order" number="19" type="device" author="AMD" contact="Daniel Rakos @aqnuep" supported="vulkan">
4517 <require>
4518 <enum value="1" name="VK_AMD_RASTERIZATION_ORDER_SPEC_VERSION"/>
4519 <enum value="&quot;VK_AMD_rasterization_order&quot;" name="VK_AMD_RASTERIZATION_ORDER_EXTENSION_NAME"/>
4520 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD"/>
4521 <type name="VkRasterizationOrderAMD"/>
4522 <type name="VkPipelineRasterizationStateRasterizationOrderAMD"/>
4523 </require>
4524 </extension>
4525 <extension name="VK_AMD_extension_20" number="20" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4526 <require>
4527 <enum value="0" name="VK_AMD_EXTENSION_20_SPEC_VERSION"/>
4528 <enum value="&quot;VK_AMD_extension_20&quot;" name="VK_AMD_EXTENSION_20_EXTENSION_NAME"/>
4529 </require>
4530 </extension>
4531 <extension name="VK_AMD_shader_trinary_minmax" number="21" type="device" author="AMD" contact="quentin.lin@amd.com" supported="vulkan">
4532 <require>
4533 <enum value="1" name="VK_AMD_SHADER_TRINARY_MINMAX_SPEC_VERSION"/>
4534 <enum value="&quot;VK_AMD_shader_trinary_minmax&quot;" name="VK_AMD_SHADER_TRINARY_MINMAX_EXTENSION_NAME"/>
4535 </require>
4536 </extension>
4537 <extension name="VK_AMD_shader_explicit_vertex_parameter" number="22" type="device" author="AMD" contact="quentin.lin@amd.com" supported="vulkan">
4538 <require>
4539 <enum value="1" name="VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_SPEC_VERSION"/>
4540 <enum value="&quot;VK_AMD_shader_explicit_vertex_parameter&quot;" name="VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_EXTENSION_NAME"/>
4541 </require>
4542 </extension>
4543 <extension name="VK_EXT_debug_marker" number="23" type="device" author="Baldur Karlsson" contact="baldurk@baldurk.org" supported="vulkan">
4544 <require>
4545 <enum value="3" name="VK_EXT_DEBUG_MARKER_SPEC_VERSION"/>
4546 <enum value="&quot;VK_EXT_debug_marker&quot;" name="VK_EXT_DEBUG_MARKER_EXTENSION_NAME"/>
4547 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT"/>
4548 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT"/>
4549 <enum offset="2" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT"/>
4550 <type name="VkDebugMarkerObjectNameInfoEXT"/>
4551 <type name="VkDebugMarkerObjectTagInfoEXT"/>
4552 <type name="VkDebugMarkerMarkerInfoEXT"/>
4553 <command name="vkDebugMarkerSetObjectTagEXT"/>
4554 <command name="vkDebugMarkerSetObjectNameEXT"/>
4555 <command name="vkCmdDebugMarkerBeginEXT"/>
4556 <command name="vkCmdDebugMarkerEndEXT"/>
4557 <command name="vkCmdDebugMarkerInsertEXT"/>
4558 </require>
4559 </extension>
4560 <extension name="VK_AMD_extension_24" number="24" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4561 <require>
4562 <enum value="0" name="VK_AMD_EXTENSION_24_SPEC_VERSION"/>
4563 <enum value="&quot;VK_AMD_extension_24&quot;" name="VK_AMD_EXTENSION_24_EXTENSION_NAME"/>
4564 </require>
4565 </extension>
4566 <extension name="VK_AMD_extension_25" number="25" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4567 <require>
4568 <enum value="0" name="VK_AMD_EXTENSION_25_SPEC_VERSION"/>
4569 <enum value="&quot;VK_AMD_extension_25&quot;" name="VK_AMD_EXTENSION_25_EXTENSION_NAME"/>
4570 </require>
4571 </extension>
4572 <extension name="VK_AMD_gcn_shader" number="26" type="device" author="AMD" contact="dominik.witczak@amd.com" supported="vulkan">
4573 <require>
4574 <enum value="1" name="VK_AMD_GCN_SHADER_SPEC_VERSION"/>
4575 <enum value="&quot;VK_AMD_gcn_shader&quot;" name="VK_AMD_GCN_SHADER_EXTENSION_NAME"/>
4576 </require>
4577 </extension>
4578 <extension name="VK_NV_dedicated_allocation" number="27" type="device" author="NVIDIA" contact="Jeff Bolz @jbolz" supported="vulkan">
4579 <require>
4580 <enum value="1" name="VK_NV_DEDICATED_ALLOCATION_SPEC_VERSION"/>
4581 <enum value="&quot;VK_NV_dedicated_allocation&quot;" name="VK_NV_DEDICATED_ALLOCATION_EXTENSION_NAME"/>
4582 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV"/>
4583 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV"/>
4584 <enum offset="2" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV"/>
4585 <type name="VkDedicatedAllocationImageCreateInfoNV"/>
4586 <type name="VkDedicatedAllocationBufferCreateInfoNV"/>
4587 <type name="VkDedicatedAllocationMemoryAllocateInfoNV"/>
4588 </require>
4589 </extension>
4590 <extension name="VK_EXT_extension_28" number="28" author="NVIDIA" contact="Piers Daniell @pdaniell" supported="disabled">
4591 <require>
4592 <enum value="0" name="VK_EXT_EXTENSION_28_SPEC_VERSION"/>
4593 <enum value="&quot;VK_NV_extension_28&quot;" name="VK_EXT_EXTENSION_28_EXTENSION_NAME"/>
4594 </require>
4595 </extension>
4596 <extension name="VK_NVX_extension_29" number="29" author="NVIDIA" contact="Jeff Juliano @jjuliano" supported="disabled">
4597 <require>
4598 <enum value="0" name="VK_NVX_EXTENSION_29_SPEC_VERSION"/>
4599 <enum value="&quot;VK_NVX_extension_29&quot;" name="VK_NVX_EXTENSION_29_EXTENSION_NAME"/>
4600 </require>
4601 </extension>
4602 <extension name="VK_NVX_extension_30" number="30" author="NVIDIA" contact="Jeff Juliano @jjuliano" supported="disabled">
4603 <require>
4604 <enum value="0" name="VK_NVX_EXTENSION_30_SPEC_VERSION"/>
4605 <enum value="&quot;VK_NVX_extension_30&quot;" name="VK_NVX_EXTENSION_30_EXTENSION_NAME"/>
4606 </require>
4607 </extension>
4608 <extension name="VK_NVX_extension_31" number="31" author="NVIDIA" contact="Jeff Juliano @jjuliano" supported="disabled">
4609 <require>
4610 <enum value="0" name="VK_NVX_EXTENSION_31_SPEC_VERSION"/>
4611 <enum value="&quot;VK_NVX_extension_31&quot;" name="VK_NVX_EXTENSION_31_EXTENSION_NAME"/>
4612 </require>
4613 </extension>
4614 <extension name="VK_AMD_extension_32" number="32" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4615 <require>
4616 <enum value="0" name="VK_AMD_EXTENSION_32_SPEC_VERSION"/>
4617 <enum value="&quot;VK_AMD_extension_32&quot;" name="VK_AMD_EXTENSION_32_EXTENSION_NAME"/>
4618 </require>
4619 </extension>
4620 <extension name="VK_AMD_extension_33" number="33" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4621 <require>
4622 <enum value="0" name="VK_AMD_EXTENSION_33_SPEC_VERSION"/>
4623 <enum value="&quot;VK_AMD_extension_33&quot;" name="VK_AMD_EXTENSION_33_EXTENSION_NAME"/>
4624 </require>
4625 </extension>
4626 <extension name="VK_AMD_draw_indirect_count" number="34" type="device" author="AMD" contact="Daniel Rakos @aqnuep" supported="vulkan">
4627 <require>
4628 <enum value="1" name="VK_AMD_DRAW_INDIRECT_COUNT_SPEC_VERSION"/>
4629 <enum value="&quot;VK_AMD_draw_indirect_count&quot;" name="VK_AMD_DRAW_INDIRECT_COUNT_EXTENSION_NAME"/>
4630 <command name="vkCmdDrawIndirectCountAMD"/>
4631 <command name="vkCmdDrawIndexedIndirectCountAMD"/>
4632 </require>
4633 </extension>
4634 <extension name="VK_AMD_extension_35" number="35" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4635 <require>
4636 <enum value="0" name="VK_AMD_EXTENSION_35_SPEC_VERSION"/>
4637 <enum value="&quot;VK_AMD_extension_35&quot;" name="VK_AMD_EXTENSION_35_EXTENSION_NAME"/>
4638 </require>
4639 </extension>
4640 <extension name="VK_AMD_negative_viewport_height" number="36" type="device" author="AMD" contact="Matthaeus G. Chajdas @anteru" supported="vulkan">
4641 <require>
4642 <enum value="1" name="VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_SPEC_VERSION"/>
4643 <enum value="&quot;VK_AMD_negative_viewport_height&quot;" name="VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_EXTENSION_NAME"/>
4644 </require>
4645 </extension>
4646 <extension name="VK_AMD_gpu_shader_half_float" number="37" type="device" author="AMD" contact="Dominik Witczak @dominikwitczak_amd" supported="vulkan">
4647 <require>
4648 <enum value="1" name="VK_AMD_GPU_SHADER_HALF_FLOAT_SPEC_VERSION"/>
4649 <enum value="&quot;VK_AMD_gpu_shader_half_float&quot;" name="VK_AMD_GPU_SHADER_HALF_FLOAT_EXTENSION_NAME"/>
4650 </require>
4651 </extension>
4652 <extension name="VK_AMD_shader_ballot" number="38" type="device" author="AMD" contact="Dominik Witczak @dominikwitczak_amd" supported="vulkan">
4653 <require>
4654 <enum value="1" name="VK_AMD_SHADER_BALLOT_SPEC_VERSION"/>
4655 <enum value="&quot;VK_AMD_shader_ballot&quot;" name="VK_AMD_SHADER_BALLOT_EXTENSION_NAME"/>
4656 </require>
4657 </extension>
4658 <extension name="VK_AMD_extension_39" number="39" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4659 <require>
4660 <enum value="0" name="VK_AMD_EXTENSION_39_SPEC_VERSION"/>
4661 <enum value="&quot;VK_AMD_extension_39&quot;" name="VK_AMD_EXTENSION_39_EXTENSION_NAME"/>
4662 </require>
4663 </extension>
4664 <extension name="VK_AMD_extension_40" number="40" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4665 <require>
4666 <enum value="0" name="VK_AMD_EXTENSION_40_SPEC_VERSION"/>
4667 <enum value="&quot;VK_AMD_extension_40&quot;" name="VK_AMD_EXTENSION_40_EXTENSION_NAME"/>
4668 </require>
4669 </extension>
4670 <extension name="VK_AMD_extension_41" number="41" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4671 <require>
4672 <enum value="0" name="VK_AMD_EXTENSION_41_SPEC_VERSION"/>
4673 <enum value="&quot;VK_AMD_extension_41&quot;" name="VK_AMD_EXTENSION_41_EXTENSION_NAME"/>
4674 </require>
4675 </extension>
4676 <extension name="VK_AMD_extension_42" number="42" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4677 <require>
4678 <enum value="0" name="VK_AMD_EXTENSION_42_SPEC_VERSION"/>
4679 <enum value="&quot;VK_AMD_extension_42&quot;" name="VK_AMD_EXTENSION_42_EXTENSION_NAME"/>
4680 </require>
4681 </extension>
4682 <extension name="VK_AMD_extension_43" number="43" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4683 <require>
4684 <enum value="0" name="VK_AMD_EXTENSION_43_SPEC_VERSION"/>
4685 <enum value="&quot;VK_AMD_extension_43&quot;" name="VK_AMD_EXTENSION_43_EXTENSION_NAME"/>
4686 </require>
4687 </extension>
4688 <extension name="VK_AMD_extension_44" number="44" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4689 <require>
4690 <enum value="0" name="VK_AMD_EXTENSION_44_SPEC_VERSION"/>
4691 <enum value="&quot;VK_AMD_extension_44&quot;" name="VK_AMD_EXTENSION_44_EXTENSION_NAME"/>
4692 </require>
4693 </extension>
4694 <extension name="VK_AMD_extension_45" number="45" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4695 <require>
4696 <enum value="0" name="VK_AMD_EXTENSION_45_SPEC_VERSION"/>
4697 <enum value="&quot;VK_AMD_extension_45&quot;" name="VK_AMD_EXTENSION_45_EXTENSION_NAME"/>
4698 </require>
4699 </extension>
4700 <extension name="VK_AMD_extension_46" number="46" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4701 <require>
4702 <enum value="0" name="VK_AMD_EXTENSION_46_SPEC_VERSION"/>
4703 <enum value="&quot;VK_AMD_extension_46&quot;" name="VK_AMD_EXTENSION_46_EXTENSION_NAME"/>
4704 </require>
4705 </extension>
4706 <extension name="VK_AMD_extension_47" number="47" author="AMD" contact="Daniel Rakos @aqnuep" supported="disabled">
4707 <require>
4708 <enum value="0" name="VK_AMD_EXTENSION_47_SPEC_VERSION"/>
4709 <enum value="&quot;VK_AMD_extension_47&quot;" name="VK_AMD_EXTENSION_47_EXTENSION_NAME"/>
4710 </require>
4711 </extension>
4712 <extension name="VK_NVX_extension_48" number="48" author="NVIDIA" contact="James Jones @cubanismo" supported="disabled">
4713 <require>
4714 <enum value="0" name="VK_NVX_EXTENSION_48_SPEC_VERSION"/>
4715 <enum value="&quot;VK_NVX_extension_48&quot;" name="VK_NVX_EXTENSION_48_EXTENSION_NAME"/>
4716 </require>
4717 </extension>
4718 <extension name="VK_GOOGLE_extension_49" number="49" author="GOOGLE" contact="Jean-Francois Roy @jfroy" supported="disabled">
4719 <require>
4720 <enum value="0" name="VK_GOOGLE_EXTENSION_49_SPEC_VERSION"/>
4721 <enum value="&quot;VK_GOOGLE_extension_49&quot;" name="VK_GOOGLE_EXTENSION_49_EXTENSION_NAME"/>
4722 </require>
4723 </extension>
4724 <extension name="VK_GOOGLE_extension_50" number="50" author="GOOGLE" contact="Jean-Francois Roy @jfroy" supported="disabled">
4725 <require>
4726 <enum value="0" name="VK_GOOGLE_EXTENSION_50_SPEC_VERSION"/>
4727 <enum value="&quot;VK_GOOGLE_extension_50&quot;" name="VK_GOOGLE_EXTENSION_50_EXTENSION_NAME"/>
4728 </require>
4729 </extension>
4730 <extension name="VK_NVX_extension_51" number="51" author="NVIDIA" contact="James Jones @cubanismo" supported="disabled">
4731 <require>
4732 <enum value="0" name="VK_NVX_EXTENSION_51_SPEC_VERSION"/>
4733 <enum value="&quot;VK_NVX_extension_51&quot;" name="VK_NVX_EXTENSION_51_EXTENSION_NAME"/>
4734 </require>
4735 </extension>
4736 <extension name="VK_NVX_extension_52" number="52" author="NVIDIA" contact="James Jones @cubanismo" supported="disabled">
4737 <require>
4738 <enum value="0" name="VK_NVX_EXTENSION_52_SPEC_VERSION"/>
4739 <enum value="&quot;VK_NVX_extension_52&quot;" name="VK_NVX_EXTENSION_52_EXTENSION_NAME"/>
4740 </require>
4741 </extension>
4742 <extension name="VK_NV_extension_53" number="53" author="NVIDIA" contact="Jeff Bolz @jbolz" supported="disabled">
4743 <require>
4744 <enum value="0" name="VK_NV_EXTENSION_53_SPEC_VERSION"/>
4745 <enum value="&quot;VK_NV_extension_53&quot;" name="VK_NV_EXTENSION_53_EXTENSION_NAME"/>
4746 </require>
4747 </extension>
4748 <extension name="VK_NV_extension_54" number="54" author="NVIDIA" contact="Jeff Bolz @jbolz" supported="disabled">
4749 <require>
4750 <enum value="0" name="VK_NV_EXTENSION_54_SPEC_VERSION"/>
4751 <enum value="&quot;VK_NV_extension_54&quot;" name="VK_NV_EXTENSION_54_EXTENSION_NAME"/>
4752 </require>
4753 </extension>
4754 <extension name="VK_IMG_format_pvrtc" number="55" type="device" author="IMG" contact="Tobias Hector @tobias" supported="vulkan">
4755 <require>
4756 <enum value="1" name="VK_IMG_FORMAT_PVRTC_SPEC_VERSION"/>
4757 <enum value="&quot;VK_IMG_format_pvrtc&quot;" name="VK_IMG_FORMAT_PVRTC_EXTENSION_NAME"/>
4758 <enum offset="0" extends="VkFormat" name="VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG"/>
4759 <enum offset="1" extends="VkFormat" name="VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG"/>
4760 <enum offset="2" extends="VkFormat" name="VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG"/>
4761 <enum offset="3" extends="VkFormat" name="VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG"/>
4762 <enum offset="4" extends="VkFormat" name="VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG"/>
4763 <enum offset="5" extends="VkFormat" name="VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG"/>
4764 <enum offset="6" extends="VkFormat" name="VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG"/>
4765 <enum offset="7" extends="VkFormat" name="VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG"/>
4766 </require>
4767 </extension>
4768 <extension name="VK_NV_external_memory_capabilities" number="56" type="instance" author="NVIDIA" contact="James jones @cubanismo" supported="vulkan">
4769 <require>
4770 <enum value="1" name="VK_NV_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION"/>
4771 <enum value="&quot;VK_NV_external_memory_capabilities&quot;" name="VK_NV_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME"/>
4772 <type name="VkExternalMemoryHandleTypeFlagsNV"/>
4773 <type name="VkExternalMemoryHandleTypeFlagBitsNV"/>
4774 <type name="VkExternalMemoryFeatureFlagsNV"/>
4775 <type name="VkExternalMemoryFeatureFlagBitsNV"/>
4776 <type name="VkExternalImageFormatPropertiesNV"/>
4777 <command name="vkGetPhysicalDeviceExternalImageFormatPropertiesNV"/>
4778 </require>
4779 </extension>
4780 <extension name="VK_NV_external_memory" number="57" type="device" requires="VK_NV_external_memory_capabilities" author="NVIDIA" contact="James jones @cubanismo" supported="vulkan">
4781 <require>
4782 <enum value="1" name="VK_NV_EXTERNAL_MEMORY_SPEC_VERSION"/>
4783 <enum value="&quot;VK_NV_external_memory&quot;" name="VK_NV_EXTERNAL_MEMORY_EXTENSION_NAME"/>
4784 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV"/>
4785 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_NV"/>
4786 <type name="VkExternalMemoryImageCreateInfoNV"/>
4787 <type name="VkExportMemoryAllocateInfoNV"/>
4788 </require>
4789 </extension>
4790 <extension name="VK_NV_external_memory_win32" number="58" type="device" requires="VK_NV_external_memory_capabilities,VK_NV_external_memory" author="NVIDIA" contact="James jones @cubanismo" protect="VK_USE_PLATFORM_WIN32_KHR" supported="vulkan">
4791 <require>
4792 <enum value="1" name="VK_NV_EXTERNAL_MEMORY_WIN32_SPEC_VERSION"/>
4793 <enum value="&quot;VK_NV_external_memory_win32&quot;" name="VK_NV_EXTERNAL_MEMORY_WIN32_EXTENSION_NAME"/>
4794 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_NV"/>
4795 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_NV"/>
4796 <type name="VkImportMemoryWin32HandleInfoNV"/>
4797 <type name="VkExportMemoryWin32HandleInfoNV"/>
4798 <command name="vkGetMemoryWin32HandleNV"/>
4799 </require>
4800 </extension>
4801 <extension name="VK_NV_win32_keyed_mutex" number="59" type="device" requires="VK_NV_external_memory_capabilities,VK_NV_external_memory_win32" author="NVIDIA" contact="Carsten Rohde" protect="VK_USE_PLATFORM_WIN32_KHR" supported="vulkan">
4802 <require>
4803 <enum value="1" name="VK_NV_WIN32_KEYED_MUTEX_SPEC_VERSION"/>
4804 <enum value="&quot;VK_NV_win32_keyed_mutex&quot;" name="VK_NV_WIN32_KEYED_MUTEX_EXTENSION_NAME"/>
4805 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV"/>
4806 <type name="VkWin32KeyedMutexAcquireReleaseInfoNV"/>
4807 </require>
4808 </extension>
4809 <extension name="VK_KHR_get_physical_device_properties2" number="60" author="KHR" contact="Jeff Bolz @jbolz" supported="vulkan">
4810 <require>
4811 <enum value="1" name="VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_SPEC_VERSION"/>
4812 <enum value="&quot;VK_KHR_get_physical_device_properties2&quot;" name="VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME"/>
4813 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR"/>
4814 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR"/>
4815 <enum offset="2" extends="VkStructureType" name="VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2_KHR"/>
4816 <enum offset="3" extends="VkStructureType" name="VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2_KHR"/>
4817 <enum offset="4" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2_KHR"/>
4818 <enum offset="5" extends="VkStructureType" name="VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2_KHR"/>
4819 <enum offset="6" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2_KHR"/>
4820 <enum offset="7" extends="VkStructureType" name="VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2_KHR"/>
4821 <enum offset="8" extends="VkStructureType" name="VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2_KHR"/>
4822 <type name="VkPhysicalDeviceFeatures2KHR"/>
4823 <type name="VkPhysicalDeviceProperties2KHR"/>
4824 <type name="VkFormatProperties2KHR"/>
4825 <type name="VkImageFormatProperties2KHR"/>
4826 <type name="VkPhysicalDeviceImageFormatInfo2KHR"/>
4827 <type name="VkQueueFamilyProperties2KHR"/>
4828 <type name="VkPhysicalDeviceMemoryProperties2KHR"/>
4829 <type name="VkSparseImageFormatProperties2KHR"/>
4830 <type name="VkPhysicalDeviceSparseImageFormatInfo2KHR"/>
4831 <command name="vkGetPhysicalDeviceFeatures2KHR"/>
4832 <command name="vkGetPhysicalDeviceProperties2KHR"/>
4833 <command name="vkGetPhysicalDeviceFormatProperties2KHR"/>
4834 <command name="vkGetPhysicalDeviceImageFormatProperties2KHR"/>
4835 <command name="vkGetPhysicalDeviceQueueFamilyProperties2KHR"/>
4836 <command name="vkGetPhysicalDeviceMemoryProperties2KHR"/>
4837 <command name="vkGetPhysicalDeviceSparseImageFormatProperties2KHR"/>
4838 </require>
4839 </extension>
4840 <extension name="VK_KHR_extension_61" number="61" author="KHR" contact="Jeff Bolz @jbolz" supported="disabled">
4841 <require>
4842 <enum value="0" name="VK_KHR_EXTENSION_61_SPEC_VERSION"/>
4843 <enum value="&quot;VK_KHR_extension_61&quot;" name="VK_KHR_EXTENSION_61_EXTENSION_NAME"/>
4844 </require>
4845 </extension>
4846 <extension name="VK_EXT_validation_flags" number="62" type="instance" author="Google, Inc." contact="Tobin Ehlis @tobine" supported="vulkan">
4847 <require>
4848 <enum value="1" name="VK_EXT_VALIDATION_FLAGS_SPEC_VERSION"/>
4849 <enum value="&quot;VK_EXT_validation_flags&quot;" name="VK_EXT_VALIDATION_FLAGS_EXTENSION_NAME"/>
4850 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT"/>
4851 <type name="VkValidationFlagsEXT"/>
4852 </require>
4853 </extension>
4854 <extension name="VK_NN_vi_surface" number="63" author="NN" contact="Mathias Heyer @mheyer" type="instance" requires="VK_KHR_surface" protect="VK_USE_PLATFORM_VI_NN" supported="vulkan">
4855 <require>
4856 <enum value="1" name="VK_NN_VI_SURFACE_SPEC_VERSION"/>
4857 <enum value="&quot;VK_NN_vi_surface&quot;" name="VK_NN_VI_SURFACE_EXTENSION_NAME"/>
4858 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_VI_SURFACE_CREATE_INFO_NN"/>
4859 <type name="VkViSurfaceCreateFlagsNN"/>
4860 <type name="VkViSurfaceCreateInfoNN"/>
4861 <command name="vkCreateViSurfaceNN"/>
4862 </require>
4863 </extension>
4864 <extension name="VK_KHR_shader_draw_parameters" number="64" type="device" author="KHR" contact="Daniel Koch @dgkoch" supported="vulkan">
4865 <require>
4866 <enum value="1" name="VK_KHR_SHADER_DRAW_PARAMETERS_SPEC_VERSION"/>
4867 <enum value="&quot;VK_KHR_shader_draw_parameters&quot;" name="VK_KHR_SHADER_DRAW_PARAMETERS_EXTENSION_NAME"/>
4868 </require>
4869 </extension>
4870 <extension name="VK_EXT_shader_subgroup_ballot" number="65" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="vulkan">
4871 <require>
4872 <enum value="1" name="VK_EXT_SHADER_SUBGROUP_BALLOT_SPEC_VERSION"/>
4873 <enum value="&quot;VK_EXT_shader_subgroup_ballot&quot;" name="VK_EXT_SHADER_SUBGROUP_BALLOT_EXTENSION_NAME"/>
4874 </require>
4875 </extension>
4876 <extension name="VK_EXT_shader_subgroup_vote" number="66" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="vulkan">
4877 <require>
4878 <enum value="1" name="VK_EXT_SHADER_SUBGROUP_VOTE_SPEC_VERSION"/>
4879 <enum value="&quot;VK_EXT_shader_subgroup_vote&quot;" name="VK_EXT_SHADER_SUBGROUP_VOTE_EXTENSION_NAME"/>
4880 </require>
4881 </extension>
4882 <extension name="VK_ARM_extension_01" number="67" type="device" author="ARM" contact="Jan-Harald Fredriksen @janharald" supported="disabled">
4883 <require>
4884 <enum value="0" name="VK_ARM_EXTENSION_01_SPEC_VERSION"/>
4885 <enum value="&quot;VK_ARM_extension_01&quot;" name="VK_ARM_EXTENSION_01_EXTENSION_NAME"/>
4886 </require>
4887 </extension>
4888 <extension name="VK_ARM_extension_02" number="68" type="device" author="ARM" contact="Jan-Harald Fredriksen @janharald" supported="disabled">
4889 <require>
4890 <enum value="0" name="VK_ARM_EXTENSION_02_SPEC_VERSION"/>
4891 <enum value="&quot;VK_ARM_extension_02&quot;" name="VK_ARM_EXTENSION_02_EXTENSION_NAME"/>
4892 </require>
4893 </extension>
4894 <extension name="VK_IMG_extension_69" number="69" type="device" author="IMG" contact="Tobias Hector @tobias" supported="disabled">
4895 <require>
4896 <enum value="0" name="VK_IMG_EXTENSION_69_SPEC_VERSION"/>
4897 <enum value="&quot;VK_IMG_extension_69&quot;" name="VK_IMG_EXTENSION_69_EXTENSION_NAME"/>
4898 </require>
4899 </extension>
4900 <extension name="VK_KHR_maintenance1" number="70" author="KHR" contact="Piers Daniell @pdaniell" supported="vulkan">
4901 <require>
4902 <enum value="1" name="VK_KHR_MAINTENANCE1_SPEC_VERSION"/>
4903 <enum value="&quot;VK_KHR_maintenance1&quot;" name="VK_KHR_MAINTENANCE1_EXTENSION_NAME"/>
4904 <enum offset="0" dir="-" extends="VkResult" name="VK_ERROR_OUT_OF_POOL_MEMORY_KHR"/>
4905 <enum bitpos="14" extends="VkFormatFeatureFlagBits" name="VK_FORMAT_FEATURE_TRANSFER_SRC_BIT_KHR" comment="Format can be used as the source image of image transfer commands"/>
4906 <enum bitpos="15" extends="VkFormatFeatureFlagBits" name="VK_FORMAT_FEATURE_TRANSFER_DST_BIT_KHR" comment="Format can be used as the destination image of image transfer commands"/>
4907 <enum bitpos="5" extends="VkImageCreateFlagBits" name="VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT_KHR" comment="The 3D image can be viewed as a 2D or 2D array image"/>
4908 <command name="vkTrimCommandPoolKHR"/>
4909 </require>
4910 </extension>
4911 <extension name="VK_KHR_extension_71" number="71" author="KHR" contact="Jeff Bolz @jbolz" supported="disabled">
4912 <require>
4913 <enum value="0" name="VK_KHR_EXTENSION_71_SPEC_VERSION"/>
4914 <enum value="&quot;VK_KHR_extension_71&quot;" name="VK_KHR_EXTENSION_71_EXTENSION_NAME"/>
4915 </require>
4916 </extension>
4917 <extension name="VK_KHR_extension_72" number="72" author="KHR" contact="James Jones @cubanismo" supported="disable">
4918 <require>
4919 <enum value="0" name="VK_KHR_EXTENSION_72_SPEC_VERSION"/>
4920 <enum value="&quot;VK_KHR_extension_72&quot;" name="VK_KHR_EXTENSION_72_EXTENSION_NAME"/>
4921 </require>
4922 </extension>
4923 <extension name="VK_KHR_extension_73" number="73" author="KHR" contact="James Jones @cubanismo" supported="disable">
4924 <require>
4925 <enum value="0" name="VK_KHR_EXTENSION_73_SPEC_VERSION"/>
4926 <enum value="&quot;VK_KHR_extension_73&quot;" name="VK_KHR_EXTENSION_73_EXTENSION_NAME"/>
4927 </require>
4928 </extension>
4929 <extension name="VK_KHR_extension_74" number="74" author="KHR" contact="James Jones @cubanismo" supported="disable">
4930 <require>
4931 <enum value="0" name="VK_KHR_EXTENSION_74_SPEC_VERSION"/>
4932 <enum value="&quot;VK_KHR_extension_74&quot;" name="VK_KHR_EXTENSION_74_EXTENSION_NAME"/>
4933 </require>
4934 </extension>
4935 <extension name="VK_KHR_extension_75" number="75" author="KHR" contact="James Jones @cubanismo" supported="disable">
4936 <require>
4937 <enum value="0" name="VK_KHR_EXTENSION_75_SPEC_VERSION"/>
4938 <enum value="&quot;VK_KHR_extension_75&quot;" name="VK_KHR_EXTENSION_75_EXTENSION_NAME"/>
4939 </require>
4940 </extension>
4941 <extension name="VK_KHR_extension_76" number="76" author="KHR" contact="James Jones @cubanismo" supported="disable">
4942 <require>
4943 <enum value="0" name="VK_KHR_EXTENSION_76_SPEC_VERSION"/>
4944 <enum value="&quot;VK_KHR_extension_76&quot;" name="VK_KHR_EXTENSION_76_EXTENSION_NAME"/>
4945 </require>
4946 </extension>
4947 <extension name="VK_KHR_extension_77" number="77" author="KHR" contact="James Jones @cubanismo" supported="disable">
4948 <require>
4949 <enum value="0" name="VK_KHR_EXTENSION_77_SPEC_VERSION"/>
4950 <enum value="&quot;VK_KHR_extension_77&quot;" name="VK_KHR_EXTENSION_77_EXTENSION_NAME"/>
4951 </require>
4952 </extension>
4953 <extension name="VK_KHR_extension_78" number="78" author="KHR" contact="James Jones @cubanismo" supported="disable">
4954 <require>
4955 <enum value="0" name="VK_KHR_EXTENSION_78_SPEC_VERSION"/>
4956 <enum value="&quot;VK_KHR_extension_78&quot;" name="VK_KHR_EXTENSION_78_EXTENSION_NAME"/>
4957 </require>
4958 </extension>
4959 <extension name="VK_KHR_extension_79" number="79" author="KHR" contact="James Jones @cubanismo" supported="disable">
4960 <require>
4961 <enum value="0" name="VK_KHR_EXTENSION_79_SPEC_VERSION"/>
4962 <enum value="&quot;VK_KHR_extension_79&quot;" name="VK_KHR_EXTENSION_79_EXTENSION_NAME"/>
4963 </require>
4964 </extension>
4965 <extension name="VK_KHR_extension_80" number="80" author="KHR" contact="James Jones @cubanismo" supported="disable">
4966 <require>
4967 <enum value="0" name="VK_KHR_EXTENSION_80_SPEC_VERSION"/>
4968 <enum value="&quot;VK_KHR_extension_80&quot;" name="VK_KHR_EXTENSION_80_EXTENSION_NAME"/>
4969 </require>
4970 </extension>
4971 <extension name="VK_KHR_extension_81" number="81" author="KHR" contact="Jeff Bolz @jbolz" supported="disabled">
4972 <require>
4973 <enum value="0" name="VK_KHR_EXTENSION_81_SPEC_VERSION"/>
4974 <enum value="&quot;VK_KHR_extension_81&quot;" name="VK_KHR_EXTENSION_81_EXTENSION_NAME"/>
4975 </require>
4976 </extension>
4977 <extension name="VK_KHR_extension_82" number="82" author="KHR" contact="Jeff Bolz @jbolz" supported="disabled">
4978 <require>
4979 <enum value="0" name="VK_KHR_EXTENSION_82_SPEC_VERSION"/>
4980 <enum value="&quot;VK_KHR_extension_82&quot;" name="VK_KHR_EXTENSION_82_EXTENSION_NAME"/>
4981 </require>
4982 </extension>
4983 <extension name="VK_KHR_extension_83" number="83" author="KHR" contact="Jan-Harald Fredriksen @janharald" supported="disabled">
4984 <require>
4985 <enum value="0" name="VK_KHR_EXTENSION_83_SPEC_VERSION"/>
4986 <enum value="&quot;VK_KHR_extension_83&quot;" name="VK_KHR_EXTENSION_83_EXTENSION_NAME"/>
4987 </require>
4988 </extension>
4989 <extension name="VK_KHR_extension_84" number="84" author="KHR" contact="Jan-Harald Fredriksen @janharald" supported="disabled">
4990 <require>
4991 <enum value="0" name="VK_KHR_EXTENSION_84_SPEC_VERSION"/>
4992 <enum value="&quot;VK_KHR_extension_84&quot;" name="VK_KHR_EXTENSION_84_EXTENSION_NAME"/>
4993 </require>
4994 </extension>
4995 <extension name="VK_KHR_extension_85" number="85" author="KHR" contact="Ian Elliott @ianelliott" supported="disabled">
4996 <require>
4997 <enum value="0" name="VK_KHR_EXTENSION_85_SPEC_VERSION"/>
4998 <enum value="&quot;VK_KHR_extension_85&quot;" name="VK_KHR_EXTENSION_85_EXTENSION_NAME"/>
4999 </require>
5000 </extension>
5001 <extension name="VK_KHR_extension_86" number="86" author="KHR" contact="Markus Tavenrath @mtavenrath" supported="disabled">
5002 <require>
5003 <enum value="0" name="VK_KHR_EXTENSION_86_SPEC_VERSION"/>
5004 <enum value="&quot;VK_KHR_extension_86&quot;" name="VK_KHR_EXTENSION_86_EXTENSION_NAME"/>
5005 </require>
5006 </extension>
5007 <extension name="VK_NVX_device_generated_commands" number="87" type="device" author="NVIDIA" contact="Christoph Kubisch @pixeljetstream" supported="vulkan">
5008 <require>
5009 <enum value="1" name="VK_NVX_DEVICE_GENERATED_COMMANDS_SPEC_VERSION"/>
5010 <enum value="&quot;VK_NVX_device_generated_commands&quot;" name="VK_NVX_DEVICE_GENERATED_COMMANDS_EXTENSION_NAME"/>
5011 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_OBJECT_TABLE_CREATE_INFO_NVX"/>
5012 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NVX"/>
5013 <enum offset="2" extends="VkStructureType" name="VK_STRUCTURE_TYPE_CMD_PROCESS_COMMANDS_INFO_NVX"/>
5014 <enum offset="3" extends="VkStructureType" name="VK_STRUCTURE_TYPE_CMD_RESERVE_SPACE_FOR_COMMANDS_INFO_NVX"/>
5015 <enum offset="4" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEVICE_GENERATED_COMMANDS_LIMITS_NVX"/>
5016 <enum offset="5" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEVICE_GENERATED_COMMANDS_FEATURES_NVX"/>
5017 <enum bitpos="17" extends="VkPipelineStageFlagBits" name="VK_PIPELINE_STAGE_COMMAND_PROCESS_BIT_NVX"/>
5018 <enum bitpos="17" extends="VkAccessFlagBits" name="VK_ACCESS_COMMAND_PROCESS_READ_BIT_NVX"/>
5019 <enum bitpos="18" extends="VkAccessFlagBits" name="VK_ACCESS_COMMAND_PROCESS_WRITE_BIT_NVX"/>
5020 <type name="VkObjectTableNVX"/>
5021 <type name="VkIndirectCommandsLayoutNVX"/>
5022 <type name="VkIndirectCommandsLayoutUsageFlagsNVX"/>
5023 <type name="VkObjectEntryUsageFlagsNVX"/>
5024 <type name="VkIndirectCommandsLayoutUsageFlagBitsNVX"/>
5025 <type name="VkIndirectCommandsTokenTypeNVX"/>
5026 <type name="VkObjectEntryUsageFlagBitsNVX"/>
5027 <type name="VkObjectEntryTypeNVX"/>
5028 <type name="VkDeviceGeneratedCommandsFeaturesNVX"/>
5029 <type name="VkDeviceGeneratedCommandsLimitsNVX"/>
5030 <type name="VkIndirectCommandsTokenNVX"/>
5031 <type name="VkIndirectCommandsLayoutTokenNVX"/>
5032 <type name="VkIndirectCommandsLayoutCreateInfoNVX"/>
5033 <type name="VkCmdProcessCommandsInfoNVX"/>
5034 <type name="VkCmdReserveSpaceForCommandsInfoNVX"/>
5035 <type name="VkObjectTableCreateInfoNVX"/>
5036 <type name="VkObjectTableEntryNVX"/>
5037 <type name="VkObjectTablePipelineEntryNVX"/>
5038 <type name="VkObjectTableDescriptorSetEntryNVX"/>
5039 <type name="VkObjectTableVertexBufferEntryNVX"/>
5040 <type name="VkObjectTableIndexBufferEntryNVX"/>
5041 <type name="VkObjectTablePushConstantEntryNVX"/>
5042 <command name="vkCmdProcessCommandsNVX"/>
5043 <command name="vkCmdReserveSpaceForCommandsNVX"/>
5044 <command name="vkCreateIndirectCommandsLayoutNVX"/>
5045 <command name="vkDestroyIndirectCommandsLayoutNVX"/>
5046 <command name="vkCreateObjectTableNVX"/>
5047 <command name="vkDestroyObjectTableNVX"/>
5048 <command name="vkRegisterObjectsNVX"/>
5049 <command name="vkUnregisterObjectsNVX"/>
5050 <command name="vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX"/>
5051 </require>
5052 </extension>
5053 <extension name="VK_KHR_extension_88" number="88" author="NV" contact="Eric Werness @ewerness" supported="disabled">
5054 <require>
5055 <enum value="0" name="VK_KHR_EXTENSION_88_SPEC_VERSION"/>
5056 <enum value="&quot;VK_KHR_extension_88&quot;" name="VK_KHR_EXTENSION_88_EXTENSION_NAME"/>
5057 </require>
5058 </extension>
5059 <extension name="VK_EXT_direct_mode_display" number="89" type="instance" requires="VK_KHR_display" author="NVIDIA" contact="James Jones @cubanismo" supported="vulkan">
5060 <require>
5061 <enum value="1" name="VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSION"/>
5062 <enum value="&quot;VK_EXT_direct_mode_display&quot;" name="VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME"/>
5063 <command name="vkReleaseDisplayEXT"/>
5064 </require>
5065 </extension>
5066 <extension name="VK_EXT_acquire_xlib_display" number="90" type="instance" requires="VK_EXT_direct_mode_display,VK_KHR_display" author="NVIDIA" contact="James Jones @cubanismo" protect="VK_USE_PLATFORM_XLIB_XRANDR_EXT" supported="vulkan">
5067 <require>
5068 <enum value="1" name="VK_EXT_ACQUIRE_XLIB_DISPLAY_SPEC_VERSION"/>
5069 <enum value="&quot;VK_EXT_acquire_xlib_display&quot;" name="VK_EXT_ACQUIRE_XLIB_DISPLAY_EXTENSION_NAME"/>
5070 <command name="vkAcquireXlibDisplayEXT"/>
5071 <command name="vkGetRandROutputDisplayEXT"/>
5072 </require>
5073 </extension>
5074 <extension name="VK_EXT_display_surface_counter" number="91" type="instance" requires="VK_KHR_display" author="NVIDIA" contact="James Jones @cubanismo" supported="vulkan">
5075 <require>
5076 <enum value="1" name="VK_EXT_DISPLAY_SURFACE_COUNTER_SPEC_VERSION"/>
5077 <enum value="&quot;VK_EXT_display_surface_counter&quot;" name="VK_EXT_DISPLAY_SURFACE_COUNTER_EXTENSION_NAME"/>
5078 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES2_EXT"/>
5079 <type name="VkSurfaceCounterFlagsEXT"/>
5080 <type name="VkSurfaceCounterFlagBitsEXT"/>
5081 <type name="VkSurfaceCapabilities2EXT"/>
5082 <command name="vkGetPhysicalDeviceSurfaceCapabilities2EXT"/>
5083 </require>
5084 </extension>
5085 <extension name="VK_EXT_display_control" number="92" type="device" requires="VK_KHR_display,VK_EXT_display_surface_counter,VK_KHR_swapchain" author="NVIDIA" contact="James Jones @cubanismo" supported="vulkan">
5086 <require>
5087 <enum value="1" name="VK_EXT_DISPLAY_CONTROL_SPEC_VERSION"/>
5088 <enum value="&quot;VK_EXT_display_control&quot;" name="VK_EXT_DISPLAY_CONTROL_EXTENSION_NAME"/>
5089 <enum offset="0" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DISPLAY_POWER_INFO_EXT"/>
5090 <enum offset="1" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT"/>
5091 <enum offset="2" extends="VkStructureType" name="VK_STRUCTURE_TYPE_DISPLAY_EVENT_INFO_EXT"/>
5092 <enum offset="3" extends="VkStructureType" name="VK_STRUCTURE_TYPE_SWAPCHAIN_COUNTER_CREATE_INFO_EXT"/>
5093 <type name="VkDisplayPowerStateEXT"/>
5094 <type name="VkDeviceEventTypeEXT"/>
5095 <type name="VkDisplayEventTypeEXT"/>
5096 <type name="VkDisplayPowerInfoEXT"/>
5097 <type name="VkDeviceEventInfoEXT"/>
5098 <type name="VkDisplayEventInfoEXT"/>
5099 <type name="VkSwapchainCounterCreateInfoEXT"/>
5100 <command name="vkDisplayPowerControlEXT"/>
5101 <command name="vkRegisterDeviceEventEXT"/>
5102 <command name="vkRegisterDisplayEventEXT"/>
5103 <command name="vkGetSwapchainCounterEXT"/>
5104 </require>
5105 </extension>
5106 <extension name="VK_KHR_extension_93" number="93" author="GOOGLE" contact="Ian Elliott @ianelliott" supported="disabled">
5107 <require>
5108 <enum value="0" name="VK_GOOGLE_EXTENSION_93_SPEC_VERSION"/>
5109 <enum value="&quot;VK_GOOGLE_extension_93&quot;" name="VK_GOOGLE_EXTENSION_93_EXTENSION_NAME"/>
5110 </require>
5111 </extension>
5112 <extension name="VK_KHR_extension_94" number="94" author="Codeplay" contact="Neil Henning @neil_henning" supported="disabled">
5113 <require>
5114 <enum value="0" name="VK_KHR_EXTENSION_94_SPEC_VERSION"/>
5115 <enum value="&quot;VK_KHR_extension_94&quot;" name="VK_KHR_EXTENSION_94_EXTENSION_NAME"/>
5116 </require>
5117 </extension>
5118 <extension name="VK_NV_extension_95" number="95" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5119 <require>
5120 <enum value="0" name="VK_NV_EXTENSION_95_SPEC_VERSION"/>
5121 <enum value="&quot;VK_NV_extension_95&quot;" name="VK_NV_EXTENSION_95_EXTENSION_NAME"/>
5122 </require>
5123 </extension>
5124 <extension name="VK_NV_extension_96" number="96" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5125 <require>
5126 <enum value="0" name="VK_NV_EXTENSION_96_SPEC_VERSION"/>
5127 <enum value="&quot;VK_NV_extension_96&quot;" name="VK_NV_EXTENSION_96_EXTENSION_NAME"/>
5128 </require>
5129 </extension>
5130 <extension name="VK_NV_extension_97" number="97" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5131 <require>
5132 <enum value="0" name="VK_NV_EXTENSION_97_SPEC_VERSION"/>
5133 <enum value="&quot;VK_NV_extension_97&quot;" name="VK_NV_EXTENSION_97_EXTENSION_NAME"/>
5134 </require>
5135 </extension>
5136 <extension name="VK_NV_extension_98" number="98" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5137 <require>
5138 <enum value="0" name="VK_NV_EXTENSION_98_SPEC_VERSION"/>
5139 <enum value="&quot;VK_NV_extension_98&quot;" name="VK_NV_EXTENSION_98_EXTENSION_NAME"/>
5140 </require>
5141 </extension>
5142 <extension name="VK_NV_extension_99" number="99" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5143 <require>
5144 <enum value="0" name="VK_NV_EXTENSION_99_SPEC_VERSION"/>
5145 <enum value="&quot;VK_NV_extension_99&quot;" name="VK_NV_EXTENSION_99_EXTENSION_NAME"/>
5146 </require>
5147 </extension>
5148 <extension name="VK_NV_extension_100" number="100" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5149 <require>
5150 <enum value="0" name="VK_NV_EXTENSION_100_SPEC_VERSION"/>
5151 <enum value="&quot;VK_NV_extension_100&quot;" name="VK_NV_EXTENSION_100_EXTENSION_NAME"/>
5152 </require>
5153 </extension>
5154 <extension name="VK_NV_extension_101" number="101" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5155 <require>
5156 <enum value="0" name="VK_NV_EXTENSION_101_SPEC_VERSION"/>
5157 <enum value="&quot;VK_NV_extension_101&quot;" name="VK_NV_EXTENSION_101_EXTENSION_NAME"/>
5158 </require>
5159 </extension>
5160 <extension name="VK_NV_extension_102" number="102" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5161 <require>
5162 <enum value="0" name="VK_NV_EXTENSION_102_SPEC_VERSION"/>
5163 <enum value="&quot;VK_NV_extension_102&quot;" name="VK_NV_EXTENSION_102_EXTENSION_NAME"/>
5164 </require>
5165 </extension>
5166 <extension name="VK_NV_extension_103" number="103" author="NVIDIA" contact="Daniel Koch @dgkoch" supported="disabled">
5167 <require>
5168 <enum value="0" name="VK_NV_EXTENSION_103_SPEC_VERSION"/>
5169 <enum value="&quot;VK_NV_extension_103&quot;" name="VK_NV_EXTENSION_103_EXTENSION_NAME"/>
5170 </require>
5171 </extension>
5172 <extension name="VK_NV_extension_104" number="104" author="NVIDIA" contact="Mathias Schott @mschott" supported="disabled">
5173 <require>
5174 <enum value="0" name="VK_NV_EXTENSION_104_SPEC_VERSION"/>
5175 <enum value="&quot;VK_NV_extension_104&quot;" name="VK_NV_EXTENSION_104_EXTENSION_NAME"/>
5176 </require>
5177 </extension>
5178 <extension name="VK_EXT_swapchain_colorspace" number="105" author="GOOGLE" contact="Courtney Goeltzenleuchter @courtneygo" requires="VK_KHR_surface" supported="vulkan">
5179 <require>
5180 <enum value="1" name="VK_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION"/>
5181 <enum value="&quot;VK_EXT_swapchain_colorspace&quot;" name="VK_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME"/>
5182 <enum offset="1" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_DISPLAY_P3_LINEAR_EXT"/>
5183 <enum offset="2" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_DISPLAY_P3_NONLINEAR_EXT"/>
5184 <enum offset="3" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_SCRGB_LINEAR_EXT"/>
5185 <enum offset="4" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_SCRGB_NONLINEAR_EXT"/>
5186 <enum offset="5" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_DCI_P3_LINEAR_EXT"/>
5187 <enum offset="6" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_DCI_P3_NONLINEAR_EXT"/>
5188 <enum offset="7" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_BT709_LINEAR_EXT"/>
5189 <enum offset="8" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_BT709_NONLINEAR_EXT"/>
5190 <enum offset="9" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_BT2020_LINEAR_EXT"/>
5191 <enum offset="10" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_BT2020_NONLINEAR_EXT"/>
5192 <enum offset="11" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_ADOBERGB_LINEAR_EXT"/>
5193 <enum offset="12" extends="VkColorSpaceKHR" name="VK_COLOR_SPACE_ADOBERGB_NONLINEAR_EXT"/>
5194 </require>
5195 </extension>
5196 <extension name="VK_EXT_extension_106" number="106" author="GOOGLE" contact="Courtney Goeltzenleuchter @courtneygo" supported="disabled">
5197 <require>
5198 <enum value="0" name="VK_KHR_EXTENSION_106_SPEC_VERSION"/>
5199 <enum value="&quot;VK_EXT_extension_106&quot;" name="VK_KHR_EXTENSION_106_EXTENSION_NAME"/>
5200 </require>
5201 </extension>
5202 <extension name="VK_IMG_extension_107" number="107" author="IMG" contact="Michael Worcester @michaelworcester" supported="disabled">
5203 <require>
5204 <enum value="0" name="VK_IMG_EXTENSION_107_SPEC_VERSION"/>
5205 <enum value="&quot;VK_IMG_extension_107&quot;" name="VK_IMG_EXTENSION_107_EXTENSION_NAME"/>
5206 </require>
5207 </extension>
5208 <extension name="VK_IMG_extension_108" number="108" author="IMG" contact="Michael Worcester @michaelworcester" supported="disabled">
5209 <require>
5210 <enum value="0" name="VK_IMG_EXTENSION_108_SPEC_VERSION"/>
5211 <enum value="&quot;VK_IMG_extension_108&quot;" name="VK_IMG_EXTENSION_108_EXTENSION_NAME"/>
5212 </require>
5213 </extension>
5214 <extension name="VK_IMG_extension_109" number="109" author="IMG" contact="Michael Worcester @michaelworcester" supported="disabled">
5215 <require>
5216 <enum value="0" name="VK_IMG_EXTENSION_109_SPEC_VERSION"/>
5217 <enum value="&quot;VK_IMG_extension_109&quot;" name="VK_IMG_EXTENSION_109_EXTENSION_NAME"/>
5218 </require>
5219 </extension>
5220 <extension name="VK_IMG_extension_110" number="110" author="IMG" contact="Michael Worcester @michaelworcester" supported="disabled">
5221 <require>
5222 <enum value="0" name="VK_IMG_EXTENSION_110_SPEC_VERSION"/>
5223 <enum value="&quot;VK_IMG_extension_110&quot;" name="VK_IMG_EXTENSION_110_EXTENSION_NAME"/>
5224 </require>
5225 </extension>
5226 <extension name="VK_IMG_extension_111" number="111" author="IMG" contact="Michael Worcester @michaelworcester" supported="disabled">
5227 <require>
5228 <enum value="0" name="VK_IMG_EXTENSION_111_SPEC_VERSION"/>
5229 <enum value="&quot;VK_IMG_extension_111&quot;" name="VK_IMG_EXTENSION_111_EXTENSION_NAME"/>
5230 </require>
5231 </extension>
5232 <extension name="VK_KHR_extension_112" number="112" author="KHR" contact="Alon Or-bach @alonorbach" supported="disabled">
5233 <require>
5234 <enum value="0" name="VK_KHR_EXTENSION_112_SPEC_VERSION"/>
5235 <enum value="&quot;VK_KHR_extension_112&quot;" name="VK_KHR_EXTENSION_112_EXTENSION_NAME"/>
5236 </require>
5237 </extension>
5238 <extension name="VK_KHR_extension_113" number="113" author="KHX" contact="Cass Everitt @casseveritt" supported="disabled">
5239 <require>
5240 <enum value="0" name="VK_KHR_EXTENSION_113_SPEC_VERSION"/>
5241 <enum value="&quot;VK_KHR_extension_113&quot;" name="VK_KHR_EXTENSION_113_EXTENSION_NAME"/>
5242 </require>
5243 </extension>
5244 <extension name="VK_KHR_extension_114" number="114" author="KHX" contact="Cass Everitt @casseveritt" supported="disabled">
5245 <require>
5246 <enum value="0" name="VK_KHR_EXTENSION_114_SPEC_VERSION"/>
5247 <enum value="&quot;VK_KHR_extension_114&quot;" name="VK_KHR_EXTENSION_114_EXTENSION_NAME"/>
5248 </require>
5249 </extension>
5250 <extension name="VK_KHR_extension_115" number="115" author="KHX" contact="Cass Everitt @casseveritt" supported="disabled">
5251 <require>
5252 <enum value="0" name="VK_KHR_EXTENSION_115_SPEC_VERSION"/>
5253 <enum value="&quot;VK_KHR_extension_115&quot;" name="VK_KHR_EXTENSION_115_EXTENSION_NAME"/>
5254 </require>
5255 </extension>
5256 <extension name="VK_KHR_extension_116" number="116" author="KHX" contact="Cass Everitt @casseveritt" supported="disabled">
5257 <require>
5258 <enum value="0" name="VK_KHR_EXTENSION_116_SPEC_VERSION"/>
5259 <enum value="&quot;VK_KHR_extension_116&quot;" name="VK_KHR_EXTENSION_116_EXTENSION_NAME"/>
5260 </require>
5261 </extension>
5262 <extension name="VK_KHR_extension_117" number="117" author="KHR" contact="Kenneth Benzie @kbenzie" supported="disabled">
5263 <require>
5264 <enum value="0" name="VK_KHR_EXTENSION_117_SPEC_VERSION"/>
5265 <enum value="&quot;VK_KHR_extension_117&quot;" name="VK_KHR_EXTENSION_117_EXTENSION_NAME"/>
5266 </require>
5267 </extension>
5268 </extensions>
5269 </registry>