blob: 2c06d308777033a476c647844aa9c41d365b2919 [file] [log] [blame]
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001"""VK API description"""
Chia-I Wufb2559d2014-08-01 11:19:52 +08002
3# Copyright (C) 2014 LunarG, Inc.
4#
5# Permission is hereby granted, free of charge, to any person obtaining a
6# copy of this software and associated documentation files (the "Software"),
7# to deal in the Software without restriction, including without limitation
8# the rights to use, copy, modify, merge, publish, distribute, sublicense,
9# and/or sell copies of the Software, and to permit persons to whom the
10# Software is furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included
13# in all copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21# DEALINGS IN THE SOFTWARE.
22
23class Param(object):
24 """A function parameter."""
25
26 def __init__(self, ty, name):
27 self.ty = ty
28 self.name = name
29
30 def c(self):
31 """Return the parameter in C."""
32 idx = self.ty.find("[")
33
34 # arrays have a different syntax
35 if idx >= 0:
36 return "%s %s%s" % (self.ty[:idx], self.name, self.ty[idx:])
37 else:
38 return "%s %s" % (self.ty, self.name)
39
Chia-I Wua5d28fa2015-01-04 15:02:50 +080040 def indirection_level(self):
41 """Return the level of indirection."""
42 return self.ty.count("*") + self.ty.count("[")
43
44 def dereferenced_type(self, level=0):
45 """Return the type after dereferencing."""
46 if not level:
47 level = self.indirection_level()
48
49 deref = self.ty if level else ""
50 while level > 0:
51 idx = deref.rfind("[")
52 if idx < 0:
53 idx = deref.rfind("*")
54 if idx < 0:
55 deref = ""
56 break
57 deref = deref[:idx]
58 level -= 1;
59
60 return deref.rstrip()
61
Chia-I Wu509a4122015-01-04 14:08:46 +080062 def __repr__(self):
63 return "Param(\"%s\", \"%s\")" % (self.ty, self.name)
64
Chia-I Wufb2559d2014-08-01 11:19:52 +080065class Proto(object):
66 """A function prototype."""
67
Chia-I Wue442dc32015-01-01 09:31:15 +080068 def __init__(self, ret, name, params=[]):
Chia-I Wufb2559d2014-08-01 11:19:52 +080069 # the proto has only a param
Chia-I Wue442dc32015-01-01 09:31:15 +080070 if not isinstance(params, list):
71 params = [params]
Chia-I Wufb2559d2014-08-01 11:19:52 +080072
73 self.ret = ret
74 self.name = name
75 self.params = params
76
77 def c_params(self, need_type=True, need_name=True):
78 """Return the parameter list in C."""
79 if self.params and (need_type or need_name):
80 if need_type and need_name:
81 return ", ".join([param.c() for param in self.params])
82 elif need_type:
83 return ", ".join([param.ty for param in self.params])
84 else:
85 return ", ".join([param.name for param in self.params])
86 else:
87 return "void" if need_type else ""
88
89 def c_decl(self, name, attr="", typed=False, need_param_names=True):
90 """Return a named declaration in C."""
91 format_vals = (self.ret,
92 attr + " " if attr else "",
93 name,
94 self.c_params(need_name=need_param_names))
95
96 if typed:
97 return "%s (%s*%s)(%s)" % format_vals
98 else:
99 return "%s %s%s(%s)" % format_vals
100
Chia-I Wuaf3b5552015-01-04 12:00:01 +0800101 def c_pretty_decl(self, name, attr=""):
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600102 """Return a named declaration in C, with vulkan.h formatting."""
Chia-I Wuaf3b5552015-01-04 12:00:01 +0800103 plist = []
104 for param in self.params:
105 idx = param.ty.find("[")
106 if idx < 0:
107 idx = len(param.ty)
108
109 pad = 44 - idx
110 if pad <= 0:
111 pad = 1
112
113 plist.append(" %s%s%s%s" % (param.ty[:idx],
114 " " * pad, param.name, param.ty[idx:]))
115
116 return "%s %s%s(\n%s)" % (self.ret,
117 attr + " " if attr else "",
118 name,
119 ",\n".join(plist))
120
Chia-I Wufb2559d2014-08-01 11:19:52 +0800121 def c_typedef(self, suffix="", attr=""):
122 """Return the typedef for the prototype in C."""
123 return self.c_decl(self.name + suffix, attr=attr, typed=True)
124
125 def c_func(self, prefix="", attr=""):
126 """Return the prototype in C."""
127 return self.c_decl(prefix + self.name, attr=attr, typed=False)
128
129 def c_call(self):
130 """Return a call to the prototype in C."""
131 return "%s(%s)" % (self.name, self.c_params(need_type=False))
132
Chia-I Wua5d28fa2015-01-04 15:02:50 +0800133 def object_in_params(self):
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600134 """Return the params that are simple VK objects and are inputs."""
Chia-I Wua5d28fa2015-01-04 15:02:50 +0800135 return [param for param in self.params if param.ty in objects]
136
137 def object_out_params(self):
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600138 """Return the params that are simple VK objects and are outputs."""
Chia-I Wua5d28fa2015-01-04 15:02:50 +0800139 return [param for param in self.params
140 if param.dereferenced_type() in objects]
141
Chia-I Wu509a4122015-01-04 14:08:46 +0800142 def __repr__(self):
143 param_strs = []
144 for param in self.params:
145 param_strs.append(str(param))
146 param_str = " [%s]" % (",\n ".join(param_strs))
147
148 return "Proto(\"%s\", \"%s\",\n%s)" % \
149 (self.ret, self.name, param_str)
150
Chia-I Wuc4f24e82015-01-01 08:46:31 +0800151class Extension(object):
Chia-I Wue86d8ab2015-01-04 14:46:22 +0800152 def __init__(self, name, headers, objects, protos):
Chia-I Wuc4f24e82015-01-01 08:46:31 +0800153 self.name = name
154 self.headers = headers
Chia-I Wue86d8ab2015-01-04 14:46:22 +0800155 self.objects = objects
Chia-I Wuc4f24e82015-01-01 08:46:31 +0800156 self.protos = protos
157
Chia-I Wu509a4122015-01-04 14:08:46 +0800158 def __repr__(self):
159 lines = []
160 lines.append("Extension(")
161 lines.append(" name=\"%s\"," % self.name)
162 lines.append(" headers=[\"%s\"]," %
163 "\", \"".join(self.headers))
164
165 lines.append(" objects=[")
166 for obj in self.objects:
167 lines.append(" \"%s\"," % obj)
168 lines.append(" ],")
169
170 lines.append(" protos=[")
171 for proto in self.protos:
172 param_lines = str(proto).splitlines()
173 param_lines[-1] += ",\n" if proto != self.protos[-1] else ","
174 for p in param_lines:
175 lines.append(" " + p)
176 lines.append(" ],")
177 lines.append(")")
178
179 return "\n".join(lines)
180
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600181# VK core API
Chia-I Wuc4f24e82015-01-01 08:46:31 +0800182core = Extension(
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600183 name="VK_CORE",
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600184 headers=["vulkan.h", "vk_debug_report_lunarg.h"],
Chia-I Wue86d8ab2015-01-04 14:46:22 +0800185 objects=[
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600186 "VkInstance",
Tony Barbourd1c35722015-04-16 15:59:00 -0600187 "VkPhysicalDevice",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600188 "VkDevice",
189 "VkQueue",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600190 "VkCmdBuffer",
Cody Northrope62183e2015-07-09 18:08:05 -0600191 "VkCmdPool",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600192 "VkFence",
Tony Barbourd1c35722015-04-16 15:59:00 -0600193 "VkDeviceMemory",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600194 "VkBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600195 "VkImage",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600196 "VkSemaphore",
197 "VkEvent",
198 "VkQueryPool",
199 "VkBufferView",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600200 "VkImageView",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600201 "VkShaderModule",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600202 "VkShader",
Tony Barboura05dbaa2015-07-09 17:31:46 -0600203 "VkPipelineCache",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600204 "VkPipelineLayout",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600205 "VkPipeline",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600206 "VkDescriptorSetLayout",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600207 "VkSampler",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600208 "VkDescriptorPool",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600209 "VkDescriptorSet",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600210 "VkDynamicViewportState",
Cody Northrop271ba752015-08-26 10:01:32 -0600211 "VkDynamicLineWidthState",
212 "VkDynamicDepthBiasState",
213 "VkDynamicBlendState",
214 "VkDynamicDepthBoundsState",
Cody Northrop82485a82015-08-18 15:21:16 -0600215 "VkDynamicStencilState",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600216 "VkRenderPass",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600217 "VkFramebuffer",
Chia-I Wue86d8ab2015-01-04 14:46:22 +0800218 ],
Chia-I Wue442dc32015-01-01 09:31:15 +0800219 protos=[
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600220 Proto("VkResult", "CreateInstance",
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600221 [Param("const VkInstanceCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600222 Param("VkInstance*", "pInstance")]),
Jon Ashburn1beab2d2015-01-26 14:51:40 -0700223
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600224 Proto("void", "DestroyInstance",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600225 [Param("VkInstance", "instance")]),
Jon Ashburn1beab2d2015-01-26 14:51:40 -0700226
Jon Ashburn83a64252015-04-15 11:31:12 -0600227 Proto("VkResult", "EnumeratePhysicalDevices",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600228 [Param("VkInstance", "instance"),
Jon Ashburn83a64252015-04-15 11:31:12 -0600229 Param("uint32_t*", "pPhysicalDeviceCount"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600230 Param("VkPhysicalDevice*", "pPhysicalDevices")]),
Jon Ashburn1beab2d2015-01-26 14:51:40 -0700231
Chris Forbesbc0bb772015-06-21 22:55:02 +1200232 Proto("VkResult", "GetPhysicalDeviceFeatures",
233 [Param("VkPhysicalDevice", "physicalDevice"),
234 Param("VkPhysicalDeviceFeatures*", "pFeatures")]),
235
Courtney Goeltzenleuchter2caec862015-07-12 12:52:09 -0600236 Proto("VkResult", "GetPhysicalDeviceFormatProperties",
Chris Forbesbc0bb772015-06-21 22:55:02 +1200237 [Param("VkPhysicalDevice", "physicalDevice"),
238 Param("VkFormat", "format"),
Jon Ashburnea65e492015-08-06 17:27:49 -0600239 Param("VkFormatProperties*", "pFormatProperties")]),
Chris Forbesbc0bb772015-06-21 22:55:02 +1200240
Jon Ashburn42540ef2015-07-23 18:48:20 -0600241 Proto("VkResult", "GetPhysicalDeviceImageFormatProperties",
242 [Param("VkPhysicalDevice", "physicalDevice"),
243 Param("VkFormat", "format"),
244 Param("VkImageType", "type"),
245 Param("VkImageTiling", "tiling"),
246 Param("VkImageUsageFlags", "usage"),
247 Param("VkImageFormatProperties*", "pImageFormatProperties")]),
248
Courtney Goeltzenleuchter2d3ba632015-07-12 14:35:22 -0600249 Proto("PFN_vkVoidFunction", "GetInstanceProcAddr",
Jon Ashburnb0fbe912015-05-06 10:15:07 -0600250 [Param("VkInstance", "instance"),
251 Param("const char*", "pName")]),
252
Courtney Goeltzenleuchter2d3ba632015-07-12 14:35:22 -0600253 Proto("PFN_vkVoidFunction", "GetDeviceProcAddr",
Jon Ashburn8d1b0b52015-05-18 13:20:15 -0600254 [Param("VkDevice", "device"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600255 Param("const char*", "pName")]),
Chia-I Wuf2ffc522015-01-04 14:51:06 +0800256
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600257 Proto("VkResult", "CreateDevice",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600258 [Param("VkPhysicalDevice", "physicalDevice"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600259 Param("const VkDeviceCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600260 Param("VkDevice*", "pDevice")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800261
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600262 Proto("void", "DestroyDevice",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600263 [Param("VkDevice", "device")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800264
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600265 Proto("VkResult", "GetPhysicalDeviceProperties",
266 [Param("VkPhysicalDevice", "physicalDevice"),
267 Param("VkPhysicalDeviceProperties*", "pProperties")]),
Tony Barbour59a47322015-06-24 16:06:58 -0600268
Cody Northropd0802882015-08-03 17:04:53 -0600269 Proto("VkResult", "GetPhysicalDeviceQueueFamilyProperties",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600270 [Param("VkPhysicalDevice", "physicalDevice"),
Cody Northropd0802882015-08-03 17:04:53 -0600271 Param("uint32_t*", "pCount"),
272 Param("VkQueueFamilyProperties*", "pQueueFamilyProperties")]),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600273
274 Proto("VkResult", "GetPhysicalDeviceMemoryProperties",
275 [Param("VkPhysicalDevice", "physicalDevice"),
276 Param("VkPhysicalDeviceMemoryProperties*", "pMemoryProperties")]),
Tony Barbour59a47322015-06-24 16:06:58 -0600277
278 Proto("VkResult", "GetGlobalExtensionProperties",
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600279 [Param("const char*", "pLayerName"),
280 Param("uint32_t*", "pCount"),
Tony Barbour59a47322015-06-24 16:06:58 -0600281 Param("VkExtensionProperties*", "pProperties")]),
282
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600283 Proto("VkResult", "GetPhysicalDeviceExtensionProperties",
284 [Param("VkPhysicalDevice", "physicalDevice"),
285 Param("const char*", "pLayerName"),
Jon Ashburnea65e492015-08-06 17:27:49 -0600286 Param("uint32_t*", "pCount"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600287 Param("VkExtensionProperties*", "pProperties")]),
288
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600289 Proto("VkResult", "GetGlobalLayerProperties",
290 [Param("uint32_t*", "pCount"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600291 Param("VkLayerProperties*", "pProperties")]),
292
293 Proto("VkResult", "GetPhysicalDeviceLayerProperties",
294 [Param("VkPhysicalDevice", "physicalDevice"),
Jon Ashburnea65e492015-08-06 17:27:49 -0600295 Param("uint32_t*", "pCount"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600296 Param("VkLayerProperties*", "pProperties")]),
Tobin Ehlis01939012015-04-16 12:51:37 -0600297
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600298 Proto("VkResult", "GetDeviceQueue",
299 [Param("VkDevice", "device"),
Jon Ashburnea65e492015-08-06 17:27:49 -0600300 Param("uint32_t", "queueFamilyIndex"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600301 Param("uint32_t", "queueIndex"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600302 Param("VkQueue*", "pQueue")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800303
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600304 Proto("VkResult", "QueueSubmit",
305 [Param("VkQueue", "queue"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600306 Param("uint32_t", "cmdBufferCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600307 Param("const VkCmdBuffer*", "pCmdBuffers"),
308 Param("VkFence", "fence")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800309
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600310 Proto("VkResult", "QueueWaitIdle",
311 [Param("VkQueue", "queue")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800312
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600313 Proto("VkResult", "DeviceWaitIdle",
314 [Param("VkDevice", "device")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800315
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600316 Proto("VkResult", "AllocMemory",
317 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600318 Param("const VkMemoryAllocInfo*", "pAllocInfo"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600319 Param("VkDeviceMemory*", "pMem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800320
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600321 Proto("void", "FreeMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600322 [Param("VkDevice", "device"),
323 Param("VkDeviceMemory", "mem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800324
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600325 Proto("VkResult", "MapMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600326 [Param("VkDevice", "device"),
327 Param("VkDeviceMemory", "mem"),
Tony Barbour71a85122015-04-16 19:09:28 -0600328 Param("VkDeviceSize", "offset"),
329 Param("VkDeviceSize", "size"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600330 Param("VkMemoryMapFlags", "flags"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600331 Param("void**", "ppData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800332
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600333 Proto("void", "UnmapMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600334 [Param("VkDevice", "device"),
335 Param("VkDeviceMemory", "mem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800336
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600337 Proto("VkResult", "FlushMappedMemoryRanges",
Mike Stroyanb050c682015-04-17 12:36:38 -0600338 [Param("VkDevice", "device"),
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600339 Param("uint32_t", "memRangeCount"),
340 Param("const VkMappedMemoryRange*", "pMemRanges")]),
341
342 Proto("VkResult", "InvalidateMappedMemoryRanges",
343 [Param("VkDevice", "device"),
344 Param("uint32_t", "memRangeCount"),
345 Param("const VkMappedMemoryRange*", "pMemRanges")]),
Tony Barbourb1250542015-04-16 19:23:13 -0600346
Courtney Goeltzenleuchterfb71f222015-07-09 21:57:28 -0600347 Proto("VkResult", "GetDeviceMemoryCommitment",
348 [Param("VkDevice", "device"),
349 Param("VkDeviceMemory", "memory"),
350 Param("VkDeviceSize*", "pCommittedMemoryInBytes")]),
351
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600352 Proto("VkResult", "BindBufferMemory",
353 [Param("VkDevice", "device"),
354 Param("VkBuffer", "buffer"),
355 Param("VkDeviceMemory", "mem"),
356 Param("VkDeviceSize", "memOffset")]),
357
358 Proto("VkResult", "BindImageMemory",
359 [Param("VkDevice", "device"),
360 Param("VkImage", "image"),
361 Param("VkDeviceMemory", "mem"),
362 Param("VkDeviceSize", "memOffset")]),
363
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600364 Proto("VkResult", "GetBufferMemoryRequirements",
Mike Stroyanb050c682015-04-17 12:36:38 -0600365 [Param("VkDevice", "device"),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600366 Param("VkBuffer", "buffer"),
Tony Barbour59a47322015-06-24 16:06:58 -0600367 Param("VkMemoryRequirements*", "pMemoryRequirements")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800368
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600369 Proto("VkResult", "GetImageMemoryRequirements",
Mark Lobodzinski942b1722015-05-11 17:21:15 -0500370 [Param("VkDevice", "device"),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600371 Param("VkImage", "image"),
372 Param("VkMemoryRequirements*", "pMemoryRequirements")]),
373
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600374 Proto("VkResult", "GetImageSparseMemoryRequirements",
375 [Param("VkDevice", "device"),
376 Param("VkImage", "image"),
377 Param("uint32_t*", "pNumRequirements"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600378 Param("VkSparseImageMemoryRequirements*", "pSparseMemoryRequirements")]),
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600379
380 Proto("VkResult", "GetPhysicalDeviceSparseImageFormatProperties",
381 [Param("VkPhysicalDevice", "physicalDevice"),
382 Param("VkFormat", "format"),
383 Param("VkImageType", "type"),
384 Param("uint32_t", "samples"),
385 Param("VkImageUsageFlags", "usage"),
386 Param("VkImageTiling", "tiling"),
387 Param("uint32_t*", "pNumProperties"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600388 Param("VkSparseImageFormatProperties*", "pProperties")]),
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600389
Mark Lobodzinski942b1722015-05-11 17:21:15 -0500390 Proto("VkResult", "QueueBindSparseBufferMemory",
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500391 [Param("VkQueue", "queue"),
Mark Lobodzinski942b1722015-05-11 17:21:15 -0500392 Param("VkBuffer", "buffer"),
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600393 Param("uint32_t", "numBindings"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600394 Param("const VkSparseMemoryBindInfo*", "pBindInfo")]),
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600395
396 Proto("VkResult", "QueueBindSparseImageOpaqueMemory",
397 [Param("VkQueue", "queue"),
398 Param("VkImage", "image"),
399 Param("uint32_t", "numBindings"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600400 Param("const VkSparseMemoryBindInfo*", "pBindInfo")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800401
Mark Lobodzinski942b1722015-05-11 17:21:15 -0500402 Proto("VkResult", "QueueBindSparseImageMemory",
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500403 [Param("VkQueue", "queue"),
404 Param("VkImage", "image"),
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600405 Param("uint32_t", "numBindings"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600406 Param("const VkSparseImageMemoryBindInfo*", "pBindInfo")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800407
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600408 Proto("VkResult", "CreateFence",
409 [Param("VkDevice", "device"),
410 Param("const VkFenceCreateInfo*", "pCreateInfo"),
411 Param("VkFence*", "pFence")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800412
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600413 Proto("void", "DestroyFence",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600414 [Param("VkDevice", "device"),
415 Param("VkFence", "fence")]),
416
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600417 Proto("VkResult", "ResetFences",
418 [Param("VkDevice", "device"),
Mark Lobodzinski148e1582015-04-07 16:07:57 -0500419 Param("uint32_t", "fenceCount"),
Courtney Goeltzenleuchter2bf8f902015-06-18 17:28:20 -0600420 Param("const VkFence*", "pFences")]),
Mark Lobodzinski148e1582015-04-07 16:07:57 -0500421
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600422 Proto("VkResult", "GetFenceStatus",
Mike Stroyanb050c682015-04-17 12:36:38 -0600423 [Param("VkDevice", "device"),
424 Param("VkFence", "fence")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800425
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600426 Proto("VkResult", "WaitForFences",
427 [Param("VkDevice", "device"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600428 Param("uint32_t", "fenceCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600429 Param("const VkFence*", "pFences"),
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600430 Param("VkBool32", "waitAll"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600431 Param("uint64_t", "timeout")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800432
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600433 Proto("VkResult", "CreateSemaphore",
434 [Param("VkDevice", "device"),
435 Param("const VkSemaphoreCreateInfo*", "pCreateInfo"),
436 Param("VkSemaphore*", "pSemaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800437
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600438 Proto("void", "DestroySemaphore",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600439 [Param("VkDevice", "device"),
440 Param("VkSemaphore", "semaphore")]),
441
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600442 Proto("VkResult", "QueueSignalSemaphore",
443 [Param("VkQueue", "queue"),
444 Param("VkSemaphore", "semaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800445
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600446 Proto("VkResult", "QueueWaitSemaphore",
447 [Param("VkQueue", "queue"),
448 Param("VkSemaphore", "semaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800449
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600450 Proto("VkResult", "CreateEvent",
451 [Param("VkDevice", "device"),
452 Param("const VkEventCreateInfo*", "pCreateInfo"),
453 Param("VkEvent*", "pEvent")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800454
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600455 Proto("void", "DestroyEvent",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600456 [Param("VkDevice", "device"),
457 Param("VkEvent", "event")]),
458
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600459 Proto("VkResult", "GetEventStatus",
Mike Stroyanb050c682015-04-17 12:36:38 -0600460 [Param("VkDevice", "device"),
461 Param("VkEvent", "event")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800462
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600463 Proto("VkResult", "SetEvent",
Mike Stroyanb050c682015-04-17 12:36:38 -0600464 [Param("VkDevice", "device"),
465 Param("VkEvent", "event")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800466
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600467 Proto("VkResult", "ResetEvent",
Mike Stroyanb050c682015-04-17 12:36:38 -0600468 [Param("VkDevice", "device"),
469 Param("VkEvent", "event")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800470
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600471 Proto("VkResult", "CreateQueryPool",
472 [Param("VkDevice", "device"),
473 Param("const VkQueryPoolCreateInfo*", "pCreateInfo"),
474 Param("VkQueryPool*", "pQueryPool")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800475
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600476 Proto("void", "DestroyQueryPool",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600477 [Param("VkDevice", "device"),
478 Param("VkQueryPool", "queryPool")]),
479
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600480 Proto("VkResult", "GetQueryPoolResults",
Mike Stroyanb050c682015-04-17 12:36:38 -0600481 [Param("VkDevice", "device"),
482 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600483 Param("uint32_t", "startQuery"),
484 Param("uint32_t", "queryCount"),
485 Param("size_t*", "pDataSize"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600486 Param("void*", "pData"),
487 Param("VkQueryResultFlags", "flags")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800488
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600489 Proto("VkResult", "CreateBuffer",
490 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600491 Param("const VkBufferCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600492 Param("VkBuffer*", "pBuffer")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800493
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600494 Proto("void", "DestroyBuffer",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600495 [Param("VkDevice", "device"),
496 Param("VkBuffer", "buffer")]),
497
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600498 Proto("VkResult", "CreateBufferView",
499 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600500 Param("const VkBufferViewCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600501 Param("VkBufferView*", "pView")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800502
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600503 Proto("void", "DestroyBufferView",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600504 [Param("VkDevice", "device"),
505 Param("VkBufferView", "bufferView")]),
506
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600507 Proto("VkResult", "CreateImage",
508 [Param("VkDevice", "device"),
509 Param("const VkImageCreateInfo*", "pCreateInfo"),
510 Param("VkImage*", "pImage")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800511
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600512 Proto("void", "DestroyImage",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600513 [Param("VkDevice", "device"),
514 Param("VkImage", "image")]),
515
Tony Barbour59a47322015-06-24 16:06:58 -0600516 Proto("VkResult", "GetImageSubresourceLayout",
Mike Stroyanb050c682015-04-17 12:36:38 -0600517 [Param("VkDevice", "device"),
518 Param("VkImage", "image"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600519 Param("const VkImageSubresource*", "pSubresource"),
Tony Barbour59a47322015-06-24 16:06:58 -0600520 Param("VkSubresourceLayout*", "pLayout")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800521
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600522 Proto("VkResult", "CreateImageView",
523 [Param("VkDevice", "device"),
524 Param("const VkImageViewCreateInfo*", "pCreateInfo"),
525 Param("VkImageView*", "pView")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800526
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600527 Proto("void", "DestroyImageView",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600528 [Param("VkDevice", "device"),
529 Param("VkImageView", "imageView")]),
530
Courtney Goeltzenleuchter2d2cb682015-06-24 18:24:19 -0600531 Proto("VkResult", "CreateShaderModule",
532 [Param("VkDevice", "device"),
533 Param("const VkShaderModuleCreateInfo*", "pCreateInfo"),
534 Param("VkShaderModule*", "pShaderModule")]),
535
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600536 Proto("void", "DestroyShaderModule",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600537 [Param("VkDevice", "device"),
538 Param("VkShaderModule", "shaderModule")]),
539
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600540 Proto("VkResult", "CreateShader",
541 [Param("VkDevice", "device"),
542 Param("const VkShaderCreateInfo*", "pCreateInfo"),
543 Param("VkShader*", "pShader")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800544
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600545 Proto("void", "DestroyShader",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600546 [Param("VkDevice", "device"),
547 Param("VkShader", "shader")]),
548
Jon Ashburnc669cc62015-07-09 15:02:25 -0600549 Proto("VkResult", "CreatePipelineCache",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600550 [Param("VkDevice", "device"),
Jon Ashburnc669cc62015-07-09 15:02:25 -0600551 Param("const VkPipelineCacheCreateInfo*", "pCreateInfo"),
552 Param("VkPipelineCache*", "pPipelineCache")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800553
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600554 Proto("void", "DestroyPipelineCache",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600555 [Param("VkDevice", "device"),
Jon Ashburnc669cc62015-07-09 15:02:25 -0600556 Param("VkPipelineCache", "pipelineCache")]),
Courtney Goeltzenleuchter0d40f152015-03-25 15:37:49 -0600557
Jon Ashburnc669cc62015-07-09 15:02:25 -0600558 Proto("size_t", "GetPipelineCacheSize",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600559 [Param("VkDevice", "device"),
Jon Ashburnc669cc62015-07-09 15:02:25 -0600560 Param("VkPipelineCache", "pipelineCache")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800561
Jon Ashburnc669cc62015-07-09 15:02:25 -0600562 Proto("VkResult", "GetPipelineCacheData",
Mike Stroyanb050c682015-04-17 12:36:38 -0600563 [Param("VkDevice", "device"),
Jon Ashburnc669cc62015-07-09 15:02:25 -0600564 Param("VkPipelineCache", "pipelineCache"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600565 Param("void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800566
Jon Ashburnc669cc62015-07-09 15:02:25 -0600567 Proto("VkResult", "MergePipelineCaches",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600568 [Param("VkDevice", "device"),
Jon Ashburnc669cc62015-07-09 15:02:25 -0600569 Param("VkPipelineCache", "destCache"),
570 Param("uint32_t", "srcCacheCount"),
571 Param("const VkPipelineCache*", "pSrcCaches")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800572
Jon Ashburnc669cc62015-07-09 15:02:25 -0600573 Proto("VkResult", "CreateGraphicsPipelines",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600574 [Param("VkDevice", "device"),
Jon Ashburnc669cc62015-07-09 15:02:25 -0600575 Param("VkPipelineCache", "pipelineCache"),
576 Param("uint32_t", "count"),
577 Param("const VkGraphicsPipelineCreateInfo*", "pCreateInfos"),
578 Param("VkPipeline*", "pPipelines")]),
579
580 Proto("VkResult", "CreateComputePipelines",
581 [Param("VkDevice", "device"),
582 Param("VkPipelineCache", "pipelineCache"),
583 Param("uint32_t", "count"),
584 Param("const VkComputePipelineCreateInfo*", "pCreateInfos"),
585 Param("VkPipeline*", "pPipelines")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800586
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600587 Proto("void", "DestroyPipeline",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600588 [Param("VkDevice", "device"),
589 Param("VkPipeline", "pipeline")]),
590
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -0500591 Proto("VkResult", "CreatePipelineLayout",
592 [Param("VkDevice", "device"),
593 Param("const VkPipelineLayoutCreateInfo*", "pCreateInfo"),
594 Param("VkPipelineLayout*", "pPipelineLayout")]),
595
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600596 Proto("void", "DestroyPipelineLayout",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600597 [Param("VkDevice", "device"),
598 Param("VkPipelineLayout", "pipelineLayout")]),
599
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600600 Proto("VkResult", "CreateSampler",
601 [Param("VkDevice", "device"),
602 Param("const VkSamplerCreateInfo*", "pCreateInfo"),
603 Param("VkSampler*", "pSampler")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800604
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600605 Proto("void", "DestroySampler",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600606 [Param("VkDevice", "device"),
607 Param("VkSampler", "sampler")]),
608
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600609 Proto("VkResult", "CreateDescriptorSetLayout",
610 [Param("VkDevice", "device"),
611 Param("const VkDescriptorSetLayoutCreateInfo*", "pCreateInfo"),
612 Param("VkDescriptorSetLayout*", "pSetLayout")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800613
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600614 Proto("void", "DestroyDescriptorSetLayout",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600615 [Param("VkDevice", "device"),
616 Param("VkDescriptorSetLayout", "descriptorSetLayout")]),
617
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600618 Proto("VkResult", "CreateDescriptorPool",
619 [Param("VkDevice", "device"),
620 Param("VkDescriptorPoolUsage", "poolUsage"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600621 Param("uint32_t", "maxSets"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600622 Param("const VkDescriptorPoolCreateInfo*", "pCreateInfo"),
623 Param("VkDescriptorPool*", "pDescriptorPool")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800624
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600625 Proto("void", "DestroyDescriptorPool",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600626 [Param("VkDevice", "device"),
627 Param("VkDescriptorPool", "descriptorPool")]),
628
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600629 Proto("VkResult", "ResetDescriptorPool",
Mike Stroyanb050c682015-04-17 12:36:38 -0600630 [Param("VkDevice", "device"),
631 Param("VkDescriptorPool", "descriptorPool")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800632
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600633 Proto("VkResult", "AllocDescriptorSets",
Mike Stroyanb050c682015-04-17 12:36:38 -0600634 [Param("VkDevice", "device"),
635 Param("VkDescriptorPool", "descriptorPool"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600636 Param("VkDescriptorSetUsage", "setUsage"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600637 Param("uint32_t", "count"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600638 Param("const VkDescriptorSetLayout*", "pSetLayouts"),
Cody Northrop1e4f8022015-08-03 12:47:29 -0600639 Param("VkDescriptorSet*", "pDescriptorSets")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800640
Tony Barbour34ec6922015-07-10 10:50:45 -0600641 Proto("VkResult", "FreeDescriptorSets",
642 [Param("VkDevice", "device"),
643 Param("VkDescriptorPool", "descriptorPool"),
644 Param("uint32_t", "count"),
645 Param("const VkDescriptorSet*", "pDescriptorSets")]),
646
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600647 Proto("void", "UpdateDescriptorSets",
Mike Stroyanb050c682015-04-17 12:36:38 -0600648 [Param("VkDevice", "device"),
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800649 Param("uint32_t", "writeCount"),
650 Param("const VkWriteDescriptorSet*", "pDescriptorWrites"),
651 Param("uint32_t", "copyCount"),
652 Param("const VkCopyDescriptorSet*", "pDescriptorCopies")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800653
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600654 Proto("VkResult", "CreateDynamicViewportState",
655 [Param("VkDevice", "device"),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600656 Param("const VkDynamicViewportStateCreateInfo*", "pCreateInfo"),
657 Param("VkDynamicViewportState*", "pState")]),
658
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600659 Proto("void", "DestroyDynamicViewportState",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600660 [Param("VkDevice", "device"),
661 Param("VkDynamicViewportState", "dynamicViewportState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800662
Cody Northrop271ba752015-08-26 10:01:32 -0600663 Proto("VkResult", "CreateDynamicLineWidthState",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600664 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600665 Param("const VkDynamicLineWidthStateCreateInfo*", "pCreateInfo"),
666 Param("VkDynamicLineWidthState*", "pState")]),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600667
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600668 Proto("void", "DestroyDynamicLineWidthState",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600669 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600670 Param("VkDynamicLineWidthState", "dynamicLineWidthState")]),
Cody Northrop12365112015-08-17 11:10:49 -0600671
Cody Northrop271ba752015-08-26 10:01:32 -0600672 Proto("VkResult", "CreateDynamicDepthBiasState",
Cody Northrop12365112015-08-17 11:10:49 -0600673 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600674 Param("const VkDynamicDepthBiasStateCreateInfo*", "pCreateInfo"),
675 Param("VkDynamicDepthBiasState*", "pState")]),
Cody Northrop12365112015-08-17 11:10:49 -0600676
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600677 Proto("void", "DestroyDynamicDepthBiasState",
Cody Northrop12365112015-08-17 11:10:49 -0600678 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600679 Param("VkDynamicDepthBiasState", "dynamicDepthBiasState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800680
Cody Northrop271ba752015-08-26 10:01:32 -0600681 Proto("VkResult", "CreateDynamicBlendState",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600682 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600683 Param("const VkDynamicBlendStateCreateInfo*", "pCreateInfo"),
684 Param("VkDynamicBlendState*", "pState")]),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600685
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600686 Proto("void", "DestroyDynamicBlendState",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600687 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600688 Param("VkDynamicBlendState", "DynamicBlendState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800689
Cody Northrop271ba752015-08-26 10:01:32 -0600690 Proto("VkResult", "CreateDynamicDepthBoundsState",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600691 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600692 Param("const VkDynamicDepthBoundsStateCreateInfo*", "pCreateInfo"),
693 Param("VkDynamicDepthBoundsState*", "pState")]),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600694
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600695 Proto("void", "DestroyDynamicDepthBoundsState",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600696 [Param("VkDevice", "device"),
Cody Northrop271ba752015-08-26 10:01:32 -0600697 Param("VkDynamicDepthBoundsState", "dynamicDepthBoundsState")]),
Cody Northrop82485a82015-08-18 15:21:16 -0600698
699 Proto("VkResult", "CreateDynamicStencilState",
700 [Param("VkDevice", "device"),
701 Param("const VkDynamicStencilStateCreateInfo*", "pCreateInfoFront"),
702 Param("const VkDynamicStencilStateCreateInfo*", "pCreateInfoBack"),
703 Param("VkDynamicStencilState*", "pState")]),
704
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600705 Proto("void", "DestroyDynamicStencilState",
Cody Northrop82485a82015-08-18 15:21:16 -0600706 [Param("VkDevice", "device"),
707 Param("VkDynamicStencilState", "dynamicStencilState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800708
Cody Northrope62183e2015-07-09 18:08:05 -0600709 Proto("VkResult", "CreateCommandPool",
710 [Param("VkDevice", "device"),
711 Param("const VkCmdPoolCreateInfo*", "pCreateInfo"),
712 Param("VkCmdPool*", "pCmdPool")]),
713
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600714 Proto("void", "DestroyCommandPool",
Cody Northrope62183e2015-07-09 18:08:05 -0600715 [Param("VkDevice", "device"),
716 Param("VkCmdPool", "cmdPool")]),
717
718 Proto("VkResult", "ResetCommandPool",
719 [Param("VkDevice", "device"),
720 Param("VkCmdPool", "cmdPool"),
721 Param("VkCmdPoolResetFlags", "flags")]),
722
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600723 Proto("VkResult", "CreateCommandBuffer",
724 [Param("VkDevice", "device"),
725 Param("const VkCmdBufferCreateInfo*", "pCreateInfo"),
726 Param("VkCmdBuffer*", "pCmdBuffer")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800727
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600728 Proto("void", "DestroyCommandBuffer",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600729 [Param("VkDevice", "device"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600730 Param("VkCmdBuffer", "commandBuffer")]),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600731
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600732 Proto("VkResult", "BeginCommandBuffer",
733 [Param("VkCmdBuffer", "cmdBuffer"),
734 Param("const VkCmdBufferBeginInfo*", "pBeginInfo")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800735
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600736 Proto("VkResult", "EndCommandBuffer",
737 [Param("VkCmdBuffer", "cmdBuffer")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800738
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600739 Proto("VkResult", "ResetCommandBuffer",
Cody Northrope62183e2015-07-09 18:08:05 -0600740 [Param("VkCmdBuffer", "cmdBuffer"),
741 Param("VkCmdBufferResetFlags", "flags")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800742
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600743 Proto("void", "CmdBindPipeline",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600744 [Param("VkCmdBuffer", "cmdBuffer"),
745 Param("VkPipelineBindPoint", "pipelineBindPoint"),
746 Param("VkPipeline", "pipeline")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800747
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600748 Proto("void", "CmdBindDynamicViewportState",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600749 [Param("VkCmdBuffer", "cmdBuffer"),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600750 Param("VkDynamicViewportState", "dynamicViewportState")]),
751
Cody Northrop271ba752015-08-26 10:01:32 -0600752 Proto("void", "CmdBindDynamicLineWidthState",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600753 [Param("VkCmdBuffer", "cmdBuffer"),
Cody Northrop271ba752015-08-26 10:01:32 -0600754 Param("VkDynamicLineWidthState", "dynamicLineWidthState")]),
Cody Northrop12365112015-08-17 11:10:49 -0600755
Cody Northrop271ba752015-08-26 10:01:32 -0600756 Proto("void", "CmdBindDynamicDepthBiasState",
Cody Northrop12365112015-08-17 11:10:49 -0600757 [Param("VkCmdBuffer", "cmdBuffer"),
Cody Northrop271ba752015-08-26 10:01:32 -0600758 Param("VkDynamicDepthBiasState", "dynamicDepthBiasState")]),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600759
Cody Northrop271ba752015-08-26 10:01:32 -0600760 Proto("void", "CmdBindDynamicBlendState",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600761 [Param("VkCmdBuffer", "cmdBuffer"),
Cody Northrop271ba752015-08-26 10:01:32 -0600762 Param("VkDynamicBlendState", "DynamicBlendState")]),
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600763
Cody Northrop271ba752015-08-26 10:01:32 -0600764 Proto("void", "CmdBindDynamicDepthBoundsState",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600765 [Param("VkCmdBuffer", "cmdBuffer"),
Cody Northrop271ba752015-08-26 10:01:32 -0600766 Param("VkDynamicDepthBoundsState", "dynamicDepthBoundsState")]),
Cody Northrop82485a82015-08-18 15:21:16 -0600767
768 Proto("void", "CmdBindDynamicStencilState",
769 [Param("VkCmdBuffer", "cmdBuffer"),
770 Param("VkDynamicStencilState", "dynamicStencilState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800771
Chia-I Wu53f07d72015-03-28 15:23:55 +0800772 Proto("void", "CmdBindDescriptorSets",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600773 [Param("VkCmdBuffer", "cmdBuffer"),
774 Param("VkPipelineBindPoint", "pipelineBindPoint"),
Mark Lobodzinskif2093b62015-06-15 13:21:21 -0600775 Param("VkPipelineLayout", "layout"),
Cody Northropd4c1a502015-04-16 13:41:56 -0600776 Param("uint32_t", "firstSet"),
777 Param("uint32_t", "setCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600778 Param("const VkDescriptorSet*", "pDescriptorSets"),
Cody Northropd4c1a502015-04-16 13:41:56 -0600779 Param("uint32_t", "dynamicOffsetCount"),
780 Param("const uint32_t*", "pDynamicOffsets")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800781
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600782 Proto("void", "CmdBindIndexBuffer",
783 [Param("VkCmdBuffer", "cmdBuffer"),
784 Param("VkBuffer", "buffer"),
785 Param("VkDeviceSize", "offset"),
786 Param("VkIndexType", "indexType")]),
787
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600788 Proto("void", "CmdBindVertexBuffers",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600789 [Param("VkCmdBuffer", "cmdBuffer"),
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600790 Param("uint32_t", "startBinding"),
791 Param("uint32_t", "bindingCount"),
792 Param("const VkBuffer*", "pBuffers"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600793 Param("const VkDeviceSize*", "pOffsets")]),
794
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600795 Proto("void", "CmdDraw",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600796 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600797 Param("uint32_t", "firstVertex"),
798 Param("uint32_t", "vertexCount"),
799 Param("uint32_t", "firstInstance"),
800 Param("uint32_t", "instanceCount")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800801
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600802 Proto("void", "CmdDrawIndexed",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600803 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600804 Param("uint32_t", "firstIndex"),
805 Param("uint32_t", "indexCount"),
806 Param("int32_t", "vertexOffset"),
807 Param("uint32_t", "firstInstance"),
808 Param("uint32_t", "instanceCount")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800809
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600810 Proto("void", "CmdDrawIndirect",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600811 [Param("VkCmdBuffer", "cmdBuffer"),
812 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600813 Param("VkDeviceSize", "offset"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600814 Param("uint32_t", "count"),
815 Param("uint32_t", "stride")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800816
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600817 Proto("void", "CmdDrawIndexedIndirect",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600818 [Param("VkCmdBuffer", "cmdBuffer"),
819 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600820 Param("VkDeviceSize", "offset"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600821 Param("uint32_t", "count"),
822 Param("uint32_t", "stride")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800823
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600824 Proto("void", "CmdDispatch",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600825 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600826 Param("uint32_t", "x"),
827 Param("uint32_t", "y"),
828 Param("uint32_t", "z")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800829
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600830 Proto("void", "CmdDispatchIndirect",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600831 [Param("VkCmdBuffer", "cmdBuffer"),
832 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600833 Param("VkDeviceSize", "offset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800834
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600835 Proto("void", "CmdCopyBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600836 [Param("VkCmdBuffer", "cmdBuffer"),
837 Param("VkBuffer", "srcBuffer"),
838 Param("VkBuffer", "destBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600839 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600840 Param("const VkBufferCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800841
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600842 Proto("void", "CmdCopyImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600843 [Param("VkCmdBuffer", "cmdBuffer"),
844 Param("VkImage", "srcImage"),
845 Param("VkImageLayout", "srcImageLayout"),
846 Param("VkImage", "destImage"),
847 Param("VkImageLayout", "destImageLayout"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600848 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600849 Param("const VkImageCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800850
Courtney Goeltzenleuchter89299fa2015-03-08 17:02:18 -0600851 Proto("void", "CmdBlitImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600852 [Param("VkCmdBuffer", "cmdBuffer"),
853 Param("VkImage", "srcImage"),
854 Param("VkImageLayout", "srcImageLayout"),
855 Param("VkImage", "destImage"),
856 Param("VkImageLayout", "destImageLayout"),
Courtney Goeltzenleuchter89299fa2015-03-08 17:02:18 -0600857 Param("uint32_t", "regionCount"),
Mark Lobodzinskiee5eef12015-05-22 14:43:25 -0500858 Param("const VkImageBlit*", "pRegions"),
859 Param("VkTexFilter", "filter")]),
Courtney Goeltzenleuchter89299fa2015-03-08 17:02:18 -0600860
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600861 Proto("void", "CmdCopyBufferToImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600862 [Param("VkCmdBuffer", "cmdBuffer"),
863 Param("VkBuffer", "srcBuffer"),
864 Param("VkImage", "destImage"),
865 Param("VkImageLayout", "destImageLayout"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600866 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600867 Param("const VkBufferImageCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800868
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600869 Proto("void", "CmdCopyImageToBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600870 [Param("VkCmdBuffer", "cmdBuffer"),
871 Param("VkImage", "srcImage"),
872 Param("VkImageLayout", "srcImageLayout"),
873 Param("VkBuffer", "destBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600874 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600875 Param("const VkBufferImageCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800876
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600877 Proto("void", "CmdUpdateBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600878 [Param("VkCmdBuffer", "cmdBuffer"),
879 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600880 Param("VkDeviceSize", "destOffset"),
881 Param("VkDeviceSize", "dataSize"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600882 Param("const uint32_t*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800883
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600884 Proto("void", "CmdFillBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600885 [Param("VkCmdBuffer", "cmdBuffer"),
886 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600887 Param("VkDeviceSize", "destOffset"),
888 Param("VkDeviceSize", "fillSize"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600889 Param("uint32_t", "data")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800890
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600891 Proto("void", "CmdClearColorImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600892 [Param("VkCmdBuffer", "cmdBuffer"),
893 Param("VkImage", "image"),
894 Param("VkImageLayout", "imageLayout"),
Chris Forbesf0796e12015-06-24 14:34:53 +1200895 Param("const VkClearColorValue*", "pColor"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600896 Param("uint32_t", "rangeCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600897 Param("const VkImageSubresourceRange*", "pRanges")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800898
Chris Forbesd9be82b2015-06-22 17:21:59 +1200899 Proto("void", "CmdClearDepthStencilImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600900 [Param("VkCmdBuffer", "cmdBuffer"),
901 Param("VkImage", "image"),
902 Param("VkImageLayout", "imageLayout"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600903 Param("float", "depth"),
904 Param("uint32_t", "stencil"),
905 Param("uint32_t", "rangeCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600906 Param("const VkImageSubresourceRange*", "pRanges")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800907
Chris Forbesd9be82b2015-06-22 17:21:59 +1200908 Proto("void", "CmdClearColorAttachment",
909 [Param("VkCmdBuffer", "cmdBuffer"),
910 Param("uint32_t", "colorAttachment"),
911 Param("VkImageLayout", "imageLayout"),
Chris Forbesf0796e12015-06-24 14:34:53 +1200912 Param("const VkClearColorValue*", "pColor"),
Chris Forbesd9be82b2015-06-22 17:21:59 +1200913 Param("uint32_t", "rectCount"),
914 Param("const VkRect3D*", "pRects")]),
915
916 Proto("void", "CmdClearDepthStencilAttachment",
917 [Param("VkCmdBuffer", "cmdBuffer"),
918 Param("VkImageAspectFlags", "imageAspectMask"),
919 Param("VkImageLayout", "imageLayout"),
920 Param("float", "depth"),
921 Param("uint32_t", "stencil"),
922 Param("uint32_t", "rectCount"),
923 Param("const VkRect3D*", "pRects")]),
924
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600925 Proto("void", "CmdResolveImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600926 [Param("VkCmdBuffer", "cmdBuffer"),
927 Param("VkImage", "srcImage"),
928 Param("VkImageLayout", "srcImageLayout"),
929 Param("VkImage", "destImage"),
930 Param("VkImageLayout", "destImageLayout"),
Tony Barbour6865d4a2015-04-13 15:02:52 -0600931 Param("uint32_t", "regionCount"),
932 Param("const VkImageResolve*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800933
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600934 Proto("void", "CmdSetEvent",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600935 [Param("VkCmdBuffer", "cmdBuffer"),
936 Param("VkEvent", "event"),
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600937 Param("VkPipelineStageFlags", "stageMask")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800938
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600939 Proto("void", "CmdResetEvent",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600940 [Param("VkCmdBuffer", "cmdBuffer"),
941 Param("VkEvent", "event"),
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600942 Param("VkPipelineStageFlags", "stageMask")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800943
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600944 Proto("void", "CmdWaitEvents",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600945 [Param("VkCmdBuffer", "cmdBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600946 Param("uint32_t", "eventCount"),
947 Param("const VkEvent*", "pEvents"),
Jon Ashburnea65e492015-08-06 17:27:49 -0600948 Param("VkPipelineStageFlags", "srcStageMask"),
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600949 Param("VkPipelineStageFlags", "destStageMask"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600950 Param("uint32_t", "memBarrierCount"),
Courtney Goeltzenleuchterdbd20322015-07-12 12:58:58 -0600951 Param("const void* const*", "ppMemBarriers")]),
Mike Stroyanfb80d5f2014-12-04 11:08:39 +0000952
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600953 Proto("void", "CmdPipelineBarrier",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600954 [Param("VkCmdBuffer", "cmdBuffer"),
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -0600955 Param("VkPipelineStageFlags", "srcStageMask"),
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600956 Param("VkPipelineStageFlags", "destStageMask"),
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600957 Param("VkBool32", "byRegion"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600958 Param("uint32_t", "memBarrierCount"),
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -0600959 Param("const void* const*", "ppMemBarriers")]),
Mike Stroyanfb80d5f2014-12-04 11:08:39 +0000960
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600961 Proto("void", "CmdBeginQuery",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600962 [Param("VkCmdBuffer", "cmdBuffer"),
963 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600964 Param("uint32_t", "slot"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600965 Param("VkQueryControlFlags", "flags")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800966
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600967 Proto("void", "CmdEndQuery",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600968 [Param("VkCmdBuffer", "cmdBuffer"),
969 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600970 Param("uint32_t", "slot")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800971
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600972 Proto("void", "CmdResetQueryPool",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600973 [Param("VkCmdBuffer", "cmdBuffer"),
974 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600975 Param("uint32_t", "startQuery"),
976 Param("uint32_t", "queryCount")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800977
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600978 Proto("void", "CmdWriteTimestamp",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600979 [Param("VkCmdBuffer", "cmdBuffer"),
980 Param("VkTimestampType", "timestampType"),
981 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600982 Param("VkDeviceSize", "destOffset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800983
Courtney Goeltzenleuchter1dbc8e22015-04-15 18:21:13 -0600984 Proto("void", "CmdCopyQueryPoolResults",
985 [Param("VkCmdBuffer", "cmdBuffer"),
986 Param("VkQueryPool", "queryPool"),
987 Param("uint32_t", "startQuery"),
988 Param("uint32_t", "queryCount"),
989 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600990 Param("VkDeviceSize", "destOffset"),
991 Param("VkDeviceSize", "destStride"),
Tobin Ehlisa30e7e52015-07-06 14:02:36 -0600992 Param("VkQueryResultFlags", "flags")]),
Courtney Goeltzenleuchter1dbc8e22015-04-15 18:21:13 -0600993
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600994 Proto("VkResult", "CreateFramebuffer",
995 [Param("VkDevice", "device"),
996 Param("const VkFramebufferCreateInfo*", "pCreateInfo"),
997 Param("VkFramebuffer*", "pFramebuffer")]),
Jeremy Hayesd65ae082015-01-14 16:17:08 -0700998
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600999 Proto("void", "DestroyFramebuffer",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -06001000 [Param("VkDevice", "device"),
1001 Param("VkFramebuffer", "framebuffer")]),
1002
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001003 Proto("VkResult", "CreateRenderPass",
1004 [Param("VkDevice", "device"),
1005 Param("const VkRenderPassCreateInfo*", "pCreateInfo"),
1006 Param("VkRenderPass*", "pRenderPass")]),
Jeremy Hayesd65ae082015-01-14 16:17:08 -07001007
Mark Lobodzinski2141f652015-09-07 13:59:43 -06001008 Proto("void", "DestroyRenderPass",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -06001009 [Param("VkDevice", "device"),
1010 Param("VkRenderPass", "renderPass")]),
1011
Courtney Goeltzenleuchtera97e2ea2015-07-27 13:47:08 -06001012 Proto("VkResult", "GetRenderAreaGranularity",
1013 [Param("VkDevice", "device"),
1014 Param("VkRenderPass", "renderPass"),
1015 Param("VkExtent2D*", "pGranularity")]),
1016
Jon Ashburne13f1982015-02-02 09:58:11 -07001017 Proto("void", "CmdBeginRenderPass",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001018 [Param("VkCmdBuffer", "cmdBuffer"),
Chia-I Wu08accc62015-07-07 11:50:03 +08001019 Param("const VkRenderPassBeginInfo*", "pRenderPassBegin"),
1020 Param("VkRenderPassContents", "contents")]),
1021
1022 Proto("void", "CmdNextSubpass",
1023 [Param("VkCmdBuffer", "cmdBuffer"),
1024 Param("VkRenderPassContents", "contents")]),
Jon Ashburne13f1982015-02-02 09:58:11 -07001025
Courtney Goeltzenleuchterab7db3b2015-07-27 14:04:01 -06001026 Proto("void", "CmdPushConstants",
1027 [Param("VkCmdBuffer", "cmdBuffer"),
1028 Param("VkPipelineLayout", "layout"),
1029 Param("VkShaderStageFlags", "stageFlags"),
1030 Param("uint32_t", "start"),
1031 Param("uint32_t", "length"),
1032 Param("const void*", "values")]),
1033
Jon Ashburne13f1982015-02-02 09:58:11 -07001034 Proto("void", "CmdEndRenderPass",
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08001035 [Param("VkCmdBuffer", "cmdBuffer")]),
1036
1037 Proto("void", "CmdExecuteCommands",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001038 [Param("VkCmdBuffer", "cmdBuffer"),
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08001039 Param("uint32_t", "cmdBuffersCount"),
1040 Param("const VkCmdBuffer*", "pCmdBuffers")]),
Chia-I Wue442dc32015-01-01 09:31:15 +08001041 ],
Chia-I Wufb2559d2014-08-01 11:19:52 +08001042)
1043
Ian Elliott7e40db92015-08-21 15:09:33 -06001044ext_khr_swapchain = Extension(
1045 name="VK_EXT_KHR_swapchain",
1046 headers=["vk_ext_khr_swapchain.h"],
Jon Ashburnea65e492015-08-06 17:27:49 -06001047 objects=[],
Chia-I Wue442dc32015-01-01 09:31:15 +08001048 protos=[
Ian Elliott7e40db92015-08-21 15:09:33 -06001049 Proto("VkResult", "GetPhysicalDeviceSurfaceSupportKHR",
Ian Elliott1064fe32015-07-06 14:31:32 -06001050 [Param("VkPhysicalDevice", "physicalDevice"),
Jon Ashburnea65e492015-08-06 17:27:49 -06001051 Param("uint32_t", "queueFamilyIndex"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001052 Param("const VkSurfaceDescriptionKHR*", "pSurfaceDescription"),
Ian Elliott1064fe32015-07-06 14:31:32 -06001053 Param("VkBool32*", "pSupported")]),
1054 ],
1055)
1056
Ian Elliott7e40db92015-08-21 15:09:33 -06001057ext_khr_device_swapchain = Extension(
1058 name="VK_EXT_KHR_device_swapchain",
1059 headers=["vk_ext_khr_device_swapchain.h"],
1060 objects=["VkSwapchainKHR"],
Ian Elliott1064fe32015-07-06 14:31:32 -06001061 protos=[
Ian Elliott7e40db92015-08-21 15:09:33 -06001062 Proto("VkResult", "GetSurfacePropertiesKHR",
Ian Elliott1064fe32015-07-06 14:31:32 -06001063 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001064 Param("const VkSurfaceDescriptionKHR*", "pSurfaceDescription"),
1065 Param("VkSurfacePropertiesKHR*", "pSurfaceProperties")]),
Ian Elliottfe14cda2015-08-06 17:05:06 -06001066
Ian Elliott7e40db92015-08-21 15:09:33 -06001067 Proto("VkResult", "GetSurfaceFormatsKHR",
Ian Elliottfe14cda2015-08-06 17:05:06 -06001068 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001069 Param("const VkSurfaceDescriptionKHR*", "pSurfaceDescription"),
Ian Elliottfe14cda2015-08-06 17:05:06 -06001070 Param("uint32_t*", "pCount"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001071 Param("VkSurfaceFormatKHR*", "pSurfaceFormats")]),
Ian Elliottfe14cda2015-08-06 17:05:06 -06001072
Ian Elliott7e40db92015-08-21 15:09:33 -06001073 Proto("VkResult", "GetSurfacePresentModesKHR",
Ian Elliottfe14cda2015-08-06 17:05:06 -06001074 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001075 Param("const VkSurfaceDescriptionKHR*", "pSurfaceDescription"),
Ian Elliottfe14cda2015-08-06 17:05:06 -06001076 Param("uint32_t*", "pCount"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001077 Param("VkPresentModeKHR*", "pPresentModes")]),
Ian Elliott1064fe32015-07-06 14:31:32 -06001078
Ian Elliott7e40db92015-08-21 15:09:33 -06001079 Proto("VkResult", "CreateSwapchainKHR",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001080 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001081 Param("const VkSwapchainCreateInfoKHR*", "pCreateInfo"),
1082 Param("VkSwapchainKHR*", "pSwapchain")]),
Chia-I Wu6dee8b82014-09-23 10:37:23 +08001083
Ian Elliott7e40db92015-08-21 15:09:33 -06001084 Proto("VkResult", "DestroySwapchainKHR",
Ian Elliott1064fe32015-07-06 14:31:32 -06001085 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001086 Param("VkSwapchainKHR", "swapchain")]),
Chia-I Wu6dee8b82014-09-23 10:37:23 +08001087
Ian Elliott7e40db92015-08-21 15:09:33 -06001088 Proto("VkResult", "GetSwapchainImagesKHR",
Ian Elliott1064fe32015-07-06 14:31:32 -06001089 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001090 Param("VkSwapchainKHR", "swapchain"),
Ian Elliottfe14cda2015-08-06 17:05:06 -06001091 Param("uint32_t*", "pCount"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001092 Param("VkImage*", "pSwapchainImages")]),
Chia-I Wuf8693382015-04-16 22:02:10 +08001093
Ian Elliott7e40db92015-08-21 15:09:33 -06001094 Proto("VkResult", "AcquireNextImageKHR",
Ian Elliott1064fe32015-07-06 14:31:32 -06001095 [Param("VkDevice", "device"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001096 Param("VkSwapchainKHR", "swapchain"),
Ian Elliott1064fe32015-07-06 14:31:32 -06001097 Param("uint64_t", "timeout"),
1098 Param("VkSemaphore", "semaphore"),
1099 Param("uint32_t*", "pImageIndex")]),
1100
Ian Elliott7e40db92015-08-21 15:09:33 -06001101 Proto("VkResult", "QueuePresentKHR",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001102 [Param("VkQueue", "queue"),
Ian Elliott7e40db92015-08-21 15:09:33 -06001103 Param("VkPresentInfoKHR*", "pPresentInfo")]),
Chia-I Wue442dc32015-01-01 09:31:15 +08001104 ],
Chia-I Wu6dee8b82014-09-23 10:37:23 +08001105)
Jon Ashburnea65e492015-08-06 17:27:49 -06001106debug_report_lunarg = Extension(
1107 name="VK_DEBUG_REPORT_LunarG",
1108 headers=["vk_debug_report_lunarg.h"],
1109 objects=[
1110 "VkDbgMsgCallback",
1111 ],
1112 protos=[
1113 Proto("VkResult", "DbgCreateMsgCallback",
1114 [Param("VkInstance", "instance"),
1115 Param("VkFlags", "msgFlags"),
1116 Param("const PFN_vkDbgMsgCallback", "pfnMsgCallback"),
1117 Param("void*", "pUserData"),
1118 Param("VkDbgMsgCallback*", "pMsgCallback")]),
1119
1120 Proto("VkResult", "DbgDestroyMsgCallback",
1121 [Param("VkInstance", "instance"),
1122 Param("VkDbgMsgCallback", "msgCallback")]),
1123 ],
1124)
Tobin Ehlisd1aa3b22015-08-27 17:41:42 -06001125debug_marker_lunarg = Extension(
1126 name="VK_DEBUG_MARKER_LunarG",
1127 headers=["vk_debug_marker_lunarg.h"],
1128 objects=[],
1129 protos=[
1130 Proto("void", "CmdDbgMarkerBegin",
1131 [Param("VkCmdBuffer", "cmdBuffer"),
1132 Param("const char*", "pMarker")]),
Chia-I Wu6dee8b82014-09-23 10:37:23 +08001133
Tobin Ehlisd1aa3b22015-08-27 17:41:42 -06001134 Proto("void", "CmdDbgMarkerEnd",
1135 [Param("VkCmdBuffer", "cmdBuffer")]),
1136
1137 Proto("VkResult", "DbgSetObjectTag",
1138 [Param("VkDevice", "device"),
1139 Param("VkDbgObjectType", "objType"),
1140 Param("uint64_t", "object"),
1141 Param("size_t", "tagSize"),
1142 Param("const void*", "pTag")]),
1143
1144 Proto("VkResult", "DbgSetObjectName",
1145 [Param("VkDevice", "device"),
1146 Param("VkDbgObjectType", "objType"),
1147 Param("uint64_t", "object"),
1148 Param("size_t", "nameSize"),
1149 Param("const char*", "pName")]),
1150 ],
1151)
Ian Elliott7e40db92015-08-21 15:09:33 -06001152extensions = [core, ext_khr_swapchain, ext_khr_device_swapchain]
1153extensions_all = [core, ext_khr_swapchain, ext_khr_device_swapchain, debug_report_lunarg, debug_marker_lunarg]
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001154object_dispatch_list = [
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001155 "VkInstance",
Tony Barbourd1c35722015-04-16 15:59:00 -06001156 "VkPhysicalDevice",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001157 "VkDevice",
1158 "VkQueue",
1159 "VkCmdBuffer",
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001160]
1161
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001162object_non_dispatch_list = [
Cody Northrope62183e2015-07-09 18:08:05 -06001163 "VkCmdPool",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001164 "VkFence",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001165 "VkDeviceMemory",
1166 "VkBuffer",
1167 "VkImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001168 "VkSemaphore",
1169 "VkEvent",
1170 "VkQueryPool",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001171 "VkBufferView",
1172 "VkImageView",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001173 "VkShaderModule",
1174 "VkShader",
1175 "VkPipelineCache",
1176 "VkPipelineLayout",
1177 "VkPipeline",
1178 "VkDescriptorSetLayout",
1179 "VkSampler",
1180 "VkDescriptorPool",
1181 "VkDescriptorSet",
Tony Barbour1d2cd3f2015-07-03 10:33:54 -06001182 "VkDynamicViewportState",
Cody Northrop271ba752015-08-26 10:01:32 -06001183 "VkDynamicLineWidthState",
1184 "VkDynamicDepthBiasState",
1185 "VkDynamicBlendState",
1186 "VkDynamicDepthBoundsState",
Cody Northrop82485a82015-08-18 15:21:16 -06001187 "VkDynamicStencilState",
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001188 "VkRenderPass",
1189 "VkFramebuffer",
Ian Elliott7e40db92015-08-21 15:09:33 -06001190 "VkSwapchainKHR",
Jon Ashburnea65e492015-08-06 17:27:49 -06001191 "VkDbgMsgCallback",
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001192]
1193
Tobin Ehlisa30e7e52015-07-06 14:02:36 -06001194object_type_list = object_dispatch_list + object_non_dispatch_list
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001195
Chia-I Wuc4f24e82015-01-01 08:46:31 +08001196headers = []
Chia-I Wue86d8ab2015-01-04 14:46:22 +08001197objects = []
Chia-I Wuc4f24e82015-01-01 08:46:31 +08001198protos = []
1199for ext in extensions:
1200 headers.extend(ext.headers)
Chia-I Wue86d8ab2015-01-04 14:46:22 +08001201 objects.extend(ext.objects)
Chia-I Wuc4f24e82015-01-01 08:46:31 +08001202 protos.extend(ext.protos)
Chia-I Wu6dee8b82014-09-23 10:37:23 +08001203
Chia-I Wu9a4ceb12015-01-01 14:45:58 +08001204proto_names = [proto.name for proto in protos]
Chia-I Wu900a2572014-08-01 14:44:16 +08001205
Courtney Goeltzenleuchterf53c3cb2015-04-14 14:55:44 -06001206def parse_vk_h(filename):
Chia-I Wu509a4122015-01-04 14:08:46 +08001207 # read object and protoype typedefs
1208 object_lines = []
1209 proto_lines = []
1210 with open(filename, "r") as fp:
1211 for line in fp:
1212 line = line.strip()
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001213 if line.startswith("VK_DEFINE"):
Chia-I Wu509a4122015-01-04 14:08:46 +08001214 begin = line.find("(") + 1
1215 end = line.find(",")
1216 # extract the object type
1217 object_lines.append(line[begin:end])
1218 if line.startswith("typedef") and line.endswith(");"):
1219 # drop leading "typedef " and trailing ");"
1220 proto_lines.append(line[8:-2])
1221
1222 # parse proto_lines to protos
1223 protos = []
1224 for line in proto_lines:
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001225 first, rest = line.split(" (VKAPI *PFN_vk")
1226 second, third = rest.split(")(")
Chia-I Wu509a4122015-01-04 14:08:46 +08001227
1228 # get the return type, no space before "*"
1229 proto_ret = "*".join([t.rstrip() for t in first.split("*")])
1230
1231 # get the name
1232 proto_name = second.strip()
1233
1234 # get the list of params
1235 param_strs = third.split(", ")
1236 params = []
1237 for s in param_strs:
1238 ty, name = s.rsplit(" ", 1)
1239
1240 # no space before "*"
1241 ty = "*".join([t.rstrip() for t in ty.split("*")])
1242 # attach [] to ty
1243 idx = name.rfind("[")
1244 if idx >= 0:
1245 ty += name[idx:]
1246 name = name[:idx]
1247
1248 params.append(Param(ty, name))
1249
1250 protos.append(Proto(proto_ret, proto_name, params))
1251
1252 # make them an extension and print
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001253 ext = Extension("VK_CORE",
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -06001254 headers=["vulkan.h", "vk_debug_report_lunarg.h"],
Chia-I Wu509a4122015-01-04 14:08:46 +08001255 objects=object_lines,
1256 protos=protos)
1257 print("core =", str(ext))
1258
1259 print("")
Jon Ashburnbacb0f52015-04-06 10:58:22 -06001260 print("typedef struct VkLayerDispatchTable_")
Chia-I Wu509a4122015-01-04 14:08:46 +08001261 print("{")
1262 for proto in ext.protos:
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001263 print(" vk%sType %s;" % (proto.name, proto.name))
Jon Ashburnbacb0f52015-04-06 10:58:22 -06001264 print("} VkLayerDispatchTable;")
Chia-I Wu509a4122015-01-04 14:08:46 +08001265
1266if __name__ == "__main__":
Courtney Goeltzenleuchterf53c3cb2015-04-14 14:55:44 -06001267 parse_vk_h("include/vulkan.h")