blob: 7aad8c93165d2c8369375bb855e7a809d4bf798b [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 Goeltzenleuchterf53c3cb2015-04-14 14:55:44 -0600184 headers=["vulkan.h", "vkDbg.h"],
Jon Ashburn9fd4cc42015-04-10 14:33:07 -0600185
Chia-I Wue86d8ab2015-01-04 14:46:22 +0800186 objects=[
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600187 "VkInstance",
Tony Barbourd1c35722015-04-16 15:59:00 -0600188 "VkPhysicalDevice",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600189 "VkDevice",
190 "VkQueue",
Tony Barbourd1c35722015-04-16 15:59:00 -0600191 "VkDeviceMemory",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600192 "VkObject",
193 "VkBuffer",
194 "VkBufferView",
195 "VkImage",
196 "VkImageView",
197 "VkColorAttachmentView",
198 "VkDepthStencilView",
199 "VkShader",
200 "VkPipeline",
201 "VkSampler",
202 "VkDescriptorSet",
203 "VkDescriptorSetLayout",
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -0500204 "VkPipelineLayout",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600205 "VkDescriptorPool",
206 "VkDynamicStateObject",
Courtney Goeltzenleuchter502744a2015-04-10 16:24:50 -0600207 "VkDynamicVpState",
208 "VkDynamicRsState",
209 "VkDynamicCbState",
210 "VkDynamicDsState",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600211 "VkCmdBuffer",
212 "VkFence",
213 "VkSemaphore",
214 "VkEvent",
215 "VkQueryPool",
216 "VkFramebuffer",
217 "VkRenderPass",
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
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600224 Proto("VkResult", "DestroyInstance",
225 [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
Tony Barbourd1c35722015-04-16 15:59:00 -0600232 Proto("VkResult", "GetPhysicalDeviceInfo",
233 [Param("VkPhysicalDevice", "gpu"),
234 Param("VkPhysicalDeviceInfoType", "infoType"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600235 Param("size_t*", "pDataSize"),
236 Param("void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800237
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600238 Proto("void*", "GetProcAddr",
Tony Barbourd1c35722015-04-16 15:59:00 -0600239 [Param("VkPhysicalDevice", "gpu"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600240 Param("const char*", "pName")]),
Chia-I Wuf2ffc522015-01-04 14:51:06 +0800241
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600242 Proto("VkResult", "CreateDevice",
Tony Barbourd1c35722015-04-16 15:59:00 -0600243 [Param("VkPhysicalDevice", "gpu"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600244 Param("const VkDeviceCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600245 Param("VkDevice*", "pDevice")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800246
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600247 Proto("VkResult", "DestroyDevice",
248 [Param("VkDevice", "device")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800249
Jon Ashburn9fd4cc42015-04-10 14:33:07 -0600250 Proto("VkResult", "GetGlobalExtensionInfo",
251 [Param("VkExtensionInfoType", "infoType"),
252 Param("uint32_t", "extensionIndex"),
253 Param("size_t*", "pDataSize"),
254 Param("void*", "pData")]),
255
Tobin Ehlis01939012015-04-16 12:51:37 -0600256 Proto("VkResult", "GetPhysicalDeviceExtensionInfo",
Tony Barbourd1c35722015-04-16 15:59:00 -0600257 [Param("VkPhysicalDevice", "gpu"),
Tobin Ehlis01939012015-04-16 12:51:37 -0600258 Param("VkExtensionInfoType", "infoType"),
259 Param("uint32_t", "extensionIndex"),
260 Param("size_t*", "pDataSize"),
261 Param("void*", "pData")]),
262
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600263 Proto("VkResult", "EnumerateLayers",
Tony Barbourd1c35722015-04-16 15:59:00 -0600264 [Param("VkPhysicalDevice", "gpu"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600265 Param("size_t", "maxStringSize"),
Courtney Goeltzenleuchterd9dc0c72015-04-20 11:04:54 -0600266 Param("size_t*", "pLayerCount"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600267 Param("char* const*", "pOutLayers"),
268 Param("void*", "pReserved")]),
Jon Ashburnf7bcf9b2014-10-15 15:30:23 -0600269
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600270 Proto("VkResult", "GetDeviceQueue",
271 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter18248e62015-03-05 18:09:39 -0700272 Param("uint32_t", "queueNodeIndex"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600273 Param("uint32_t", "queueIndex"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600274 Param("VkQueue*", "pQueue")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800275
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600276 Proto("VkResult", "QueueSubmit",
277 [Param("VkQueue", "queue"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600278 Param("uint32_t", "cmdBufferCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600279 Param("const VkCmdBuffer*", "pCmdBuffers"),
280 Param("VkFence", "fence")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800281
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600282 Proto("VkResult", "QueueAddMemReferences",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600283 [Param("VkQueue", "queue"),
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600284 Param("uint32_t", "count"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600285 Param("const VkDeviceMemory*", "pMems")]),
Courtney Goeltzenleuchterd3fb9552015-04-02 13:39:07 -0600286
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600287 Proto("VkResult", "QueueRemoveMemReferences",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600288 [Param("VkQueue", "queue"),
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600289 Param("uint32_t", "count"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600290 Param("const VkDeviceMemory*", "pMems")]),
Courtney Goeltzenleuchterd3fb9552015-04-02 13:39:07 -0600291
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600292 Proto("VkResult", "QueueWaitIdle",
293 [Param("VkQueue", "queue")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800294
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600295 Proto("VkResult", "DeviceWaitIdle",
296 [Param("VkDevice", "device")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800297
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600298 Proto("VkResult", "AllocMemory",
299 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600300 Param("const VkMemoryAllocInfo*", "pAllocInfo"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600301 Param("VkDeviceMemory*", "pMem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800302
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600303 Proto("VkResult", "FreeMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600304 [Param("VkDevice", "device"),
305 Param("VkDeviceMemory", "mem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800306
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600307 Proto("VkResult", "SetMemoryPriority",
Mike Stroyanb050c682015-04-17 12:36:38 -0600308 [Param("VkDevice", "device"),
309 Param("VkDeviceMemory", "mem"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600310 Param("VkMemoryPriority", "priority")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800311
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600312 Proto("VkResult", "MapMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600313 [Param("VkDevice", "device"),
314 Param("VkDeviceMemory", "mem"),
Tony Barbour71a85122015-04-16 19:09:28 -0600315 Param("VkDeviceSize", "offset"),
316 Param("VkDeviceSize", "size"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600317 Param("VkFlags", "flags"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600318 Param("void**", "ppData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800319
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600320 Proto("VkResult", "UnmapMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600321 [Param("VkDevice", "device"),
322 Param("VkDeviceMemory", "mem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800323
Tony Barbourb1250542015-04-16 19:23:13 -0600324 Proto("VkResult", "FlushMappedMemory",
Mike Stroyanb050c682015-04-17 12:36:38 -0600325 [Param("VkDevice", "device"),
326 Param("VkDeviceMemory", "mem"),
Tony Barbourb1250542015-04-16 19:23:13 -0600327 Param("VkDeviceSize", "offset"),
328 Param("VkDeviceSize", "size")]),
329
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600330 Proto("VkResult", "PinSystemMemory",
331 [Param("VkDevice", "device"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600332 Param("const void*", "pSysMem"),
333 Param("size_t", "memSize"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600334 Param("VkDeviceMemory*", "pMem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800335
Tony Barbourd1c35722015-04-16 15:59:00 -0600336 Proto("VkResult", "GetMultiDeviceCompatibility",
337 [Param("VkPhysicalDevice", "gpu0"),
338 Param("VkPhysicalDevice", "gpu1"),
339 Param("VkPhysicalDeviceCompatibilityInfo*", "pInfo")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800340
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600341 Proto("VkResult", "OpenSharedMemory",
342 [Param("VkDevice", "device"),
343 Param("const VkMemoryOpenInfo*", "pOpenInfo"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600344 Param("VkDeviceMemory*", "pMem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800345
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600346 Proto("VkResult", "OpenSharedSemaphore",
347 [Param("VkDevice", "device"),
348 Param("const VkSemaphoreOpenInfo*", "pOpenInfo"),
349 Param("VkSemaphore*", "pSemaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800350
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600351 Proto("VkResult", "OpenPeerMemory",
352 [Param("VkDevice", "device"),
353 Param("const VkPeerMemoryOpenInfo*", "pOpenInfo"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600354 Param("VkDeviceMemory*", "pMem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800355
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600356 Proto("VkResult", "OpenPeerImage",
357 [Param("VkDevice", "device"),
358 Param("const VkPeerImageOpenInfo*", "pOpenInfo"),
359 Param("VkImage*", "pImage"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600360 Param("VkDeviceMemory*", "pMem")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800361
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600362 Proto("VkResult", "DestroyObject",
Mike Stroyanb050c682015-04-17 12:36:38 -0600363 [Param("VkDevice", "device"),
364 Param("VkObjectType", "objType"),
365 Param("VkObject", "object")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800366
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600367 Proto("VkResult", "GetObjectInfo",
Mike Stroyanb050c682015-04-17 12:36:38 -0600368 [Param("VkDevice", "device"),
369 Param("VkObjectType", "objType"),
370 Param("VkObject", "object"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600371 Param("VkObjectInfoType", "infoType"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600372 Param("size_t*", "pDataSize"),
373 Param("void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800374
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500375 Proto("VkResult", "QueueBindObjectMemory",
376 [Param("VkQueue", "queue"),
Mike Stroyanb050c682015-04-17 12:36:38 -0600377 Param("VkObjectType", "objType"),
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500378 Param("VkObject", "object"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600379 Param("uint32_t", "allocationIdx"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600380 Param("VkDeviceMemory", "mem"),
381 Param("VkDeviceSize", "offset")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800382
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500383 Proto("VkResult", "QueueBindObjectMemoryRange",
384 [Param("VkQueue", "queue"),
Mike Stroyanb050c682015-04-17 12:36:38 -0600385 Param("VkObjectType", "objType"),
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500386 Param("VkObject", "object"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600387 Param("uint32_t", "allocationIdx"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600388 Param("VkDeviceSize", "rangeOffset"),
389 Param("VkDeviceSize", "rangeSize"),
390 Param("VkDeviceMemory", "mem"),
391 Param("VkDeviceSize", "memOffset")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800392
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500393 Proto("VkResult", "QueueBindImageMemoryRange",
394 [Param("VkQueue", "queue"),
395 Param("VkImage", "image"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600396 Param("uint32_t", "allocationIdx"),
Jeremy Hayesaf0d72c2015-04-15 15:20:03 -0600397 Param("const VkImageMemoryBindInfo*", "pBindInfo"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600398 Param("VkDeviceMemory", "mem"),
399 Param("VkDeviceSize", "memOffset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800400
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600401 Proto("VkResult", "CreateFence",
402 [Param("VkDevice", "device"),
403 Param("const VkFenceCreateInfo*", "pCreateInfo"),
404 Param("VkFence*", "pFence")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800405
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600406 Proto("VkResult", "ResetFences",
407 [Param("VkDevice", "device"),
Mark Lobodzinski148e1582015-04-07 16:07:57 -0500408 Param("uint32_t", "fenceCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600409 Param("VkFence*", "pFences")]),
Mark Lobodzinski148e1582015-04-07 16:07:57 -0500410
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600411 Proto("VkResult", "GetFenceStatus",
Mike Stroyanb050c682015-04-17 12:36:38 -0600412 [Param("VkDevice", "device"),
413 Param("VkFence", "fence")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800414
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600415 Proto("VkResult", "WaitForFences",
416 [Param("VkDevice", "device"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600417 Param("uint32_t", "fenceCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600418 Param("const VkFence*", "pFences"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600419 Param("bool32_t", "waitAll"),
420 Param("uint64_t", "timeout")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800421
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600422 Proto("VkResult", "CreateSemaphore",
423 [Param("VkDevice", "device"),
424 Param("const VkSemaphoreCreateInfo*", "pCreateInfo"),
425 Param("VkSemaphore*", "pSemaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800426
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600427 Proto("VkResult", "QueueSignalSemaphore",
428 [Param("VkQueue", "queue"),
429 Param("VkSemaphore", "semaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800430
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600431 Proto("VkResult", "QueueWaitSemaphore",
432 [Param("VkQueue", "queue"),
433 Param("VkSemaphore", "semaphore")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800434
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600435 Proto("VkResult", "CreateEvent",
436 [Param("VkDevice", "device"),
437 Param("const VkEventCreateInfo*", "pCreateInfo"),
438 Param("VkEvent*", "pEvent")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800439
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600440 Proto("VkResult", "GetEventStatus",
Mike Stroyanb050c682015-04-17 12:36:38 -0600441 [Param("VkDevice", "device"),
442 Param("VkEvent", "event")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800443
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600444 Proto("VkResult", "SetEvent",
Mike Stroyanb050c682015-04-17 12:36:38 -0600445 [Param("VkDevice", "device"),
446 Param("VkEvent", "event")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800447
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600448 Proto("VkResult", "ResetEvent",
Mike Stroyanb050c682015-04-17 12:36:38 -0600449 [Param("VkDevice", "device"),
450 Param("VkEvent", "event")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800451
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600452 Proto("VkResult", "CreateQueryPool",
453 [Param("VkDevice", "device"),
454 Param("const VkQueryPoolCreateInfo*", "pCreateInfo"),
455 Param("VkQueryPool*", "pQueryPool")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800456
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600457 Proto("VkResult", "GetQueryPoolResults",
Mike Stroyanb050c682015-04-17 12:36:38 -0600458 [Param("VkDevice", "device"),
459 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600460 Param("uint32_t", "startQuery"),
461 Param("uint32_t", "queryCount"),
462 Param("size_t*", "pDataSize"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600463 Param("void*", "pData"),
464 Param("VkQueryResultFlags", "flags")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800465
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600466 Proto("VkResult", "GetFormatInfo",
467 [Param("VkDevice", "device"),
468 Param("VkFormat", "format"),
469 Param("VkFormatInfoType", "infoType"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600470 Param("size_t*", "pDataSize"),
471 Param("void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800472
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600473 Proto("VkResult", "CreateBuffer",
474 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600475 Param("const VkBufferCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600476 Param("VkBuffer*", "pBuffer")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800477
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600478 Proto("VkResult", "CreateBufferView",
479 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600480 Param("const VkBufferViewCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600481 Param("VkBufferView*", "pView")]),
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800482
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600483 Proto("VkResult", "CreateImage",
484 [Param("VkDevice", "device"),
485 Param("const VkImageCreateInfo*", "pCreateInfo"),
486 Param("VkImage*", "pImage")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800487
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600488 Proto("VkResult", "GetImageSubresourceInfo",
Mike Stroyanb050c682015-04-17 12:36:38 -0600489 [Param("VkDevice", "device"),
490 Param("VkImage", "image"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600491 Param("const VkImageSubresource*", "pSubresource"),
492 Param("VkSubresourceInfoType", "infoType"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600493 Param("size_t*", "pDataSize"),
494 Param("void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800495
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600496 Proto("VkResult", "CreateImageView",
497 [Param("VkDevice", "device"),
498 Param("const VkImageViewCreateInfo*", "pCreateInfo"),
499 Param("VkImageView*", "pView")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800500
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600501 Proto("VkResult", "CreateColorAttachmentView",
502 [Param("VkDevice", "device"),
503 Param("const VkColorAttachmentViewCreateInfo*", "pCreateInfo"),
504 Param("VkColorAttachmentView*", "pView")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800505
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600506 Proto("VkResult", "CreateDepthStencilView",
507 [Param("VkDevice", "device"),
508 Param("const VkDepthStencilViewCreateInfo*", "pCreateInfo"),
509 Param("VkDepthStencilView*", "pView")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800510
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600511 Proto("VkResult", "CreateShader",
512 [Param("VkDevice", "device"),
513 Param("const VkShaderCreateInfo*", "pCreateInfo"),
514 Param("VkShader*", "pShader")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800515
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600516 Proto("VkResult", "CreateGraphicsPipeline",
517 [Param("VkDevice", "device"),
518 Param("const VkGraphicsPipelineCreateInfo*", "pCreateInfo"),
519 Param("VkPipeline*", "pPipeline")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800520
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600521 Proto("VkResult", "CreateGraphicsPipelineDerivative",
522 [Param("VkDevice", "device"),
523 Param("const VkGraphicsPipelineCreateInfo*", "pCreateInfo"),
524 Param("VkPipeline", "basePipeline"),
525 Param("VkPipeline*", "pPipeline")]),
Courtney Goeltzenleuchter0d40f152015-03-25 15:37:49 -0600526
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600527 Proto("VkResult", "CreateComputePipeline",
528 [Param("VkDevice", "device"),
529 Param("const VkComputePipelineCreateInfo*", "pCreateInfo"),
530 Param("VkPipeline*", "pPipeline")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800531
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600532 Proto("VkResult", "StorePipeline",
Mike Stroyanb050c682015-04-17 12:36:38 -0600533 [Param("VkDevice", "device"),
534 Param("VkPipeline", "pipeline"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600535 Param("size_t*", "pDataSize"),
536 Param("void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800537
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600538 Proto("VkResult", "LoadPipeline",
539 [Param("VkDevice", "device"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600540 Param("size_t", "dataSize"),
541 Param("const void*", "pData"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600542 Param("VkPipeline*", "pPipeline")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800543
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600544 Proto("VkResult", "LoadPipelineDerivative",
545 [Param("VkDevice", "device"),
Courtney Goeltzenleuchter0d40f152015-03-25 15:37:49 -0600546 Param("size_t", "dataSize"),
547 Param("const void*", "pData"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600548 Param("VkPipeline", "basePipeline"),
549 Param("VkPipeline*", "pPipeline")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800550
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -0500551 Proto("VkResult", "CreatePipelineLayout",
552 [Param("VkDevice", "device"),
553 Param("const VkPipelineLayoutCreateInfo*", "pCreateInfo"),
554 Param("VkPipelineLayout*", "pPipelineLayout")]),
555
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600556 Proto("VkResult", "CreateSampler",
557 [Param("VkDevice", "device"),
558 Param("const VkSamplerCreateInfo*", "pCreateInfo"),
559 Param("VkSampler*", "pSampler")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800560
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600561 Proto("VkResult", "CreateDescriptorSetLayout",
562 [Param("VkDevice", "device"),
563 Param("const VkDescriptorSetLayoutCreateInfo*", "pCreateInfo"),
564 Param("VkDescriptorSetLayout*", "pSetLayout")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800565
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600566 Proto("VkResult", "BeginDescriptorPoolUpdate",
567 [Param("VkDevice", "device"),
568 Param("VkDescriptorUpdateMode", "updateMode")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800569
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600570 Proto("VkResult", "EndDescriptorPoolUpdate",
571 [Param("VkDevice", "device"),
572 Param("VkCmdBuffer", "cmd")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800573
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600574 Proto("VkResult", "CreateDescriptorPool",
575 [Param("VkDevice", "device"),
576 Param("VkDescriptorPoolUsage", "poolUsage"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600577 Param("uint32_t", "maxSets"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600578 Param("const VkDescriptorPoolCreateInfo*", "pCreateInfo"),
579 Param("VkDescriptorPool*", "pDescriptorPool")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800580
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600581 Proto("VkResult", "ResetDescriptorPool",
Mike Stroyanb050c682015-04-17 12:36:38 -0600582 [Param("VkDevice", "device"),
583 Param("VkDescriptorPool", "descriptorPool")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800584
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600585 Proto("VkResult", "AllocDescriptorSets",
Mike Stroyanb050c682015-04-17 12:36:38 -0600586 [Param("VkDevice", "device"),
587 Param("VkDescriptorPool", "descriptorPool"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600588 Param("VkDescriptorSetUsage", "setUsage"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600589 Param("uint32_t", "count"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600590 Param("const VkDescriptorSetLayout*", "pSetLayouts"),
591 Param("VkDescriptorSet*", "pDescriptorSets"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600592 Param("uint32_t*", "pCount")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800593
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600594 Proto("void", "ClearDescriptorSets",
Mike Stroyanb050c682015-04-17 12:36:38 -0600595 [Param("VkDevice", "device"),
596 Param("VkDescriptorPool", "descriptorPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600597 Param("uint32_t", "count"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600598 Param("const VkDescriptorSet*", "pDescriptorSets")]),
Chia-I Wu11078b02015-01-04 16:27:24 +0800599
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600600 Proto("void", "UpdateDescriptors",
Mike Stroyanb050c682015-04-17 12:36:38 -0600601 [Param("VkDevice", "device"),
602 Param("VkDescriptorSet", "descriptorSet"),
Chia-I Wu41126e52015-03-26 15:27:55 +0800603 Param("uint32_t", "updateCount"),
604 Param("const void**", "ppUpdateArray")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800605
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600606 Proto("VkResult", "CreateDynamicViewportState",
607 [Param("VkDevice", "device"),
608 Param("const VkDynamicVpStateCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchter502744a2015-04-10 16:24:50 -0600609 Param("VkDynamicVpState*", "pState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800610
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600611 Proto("VkResult", "CreateDynamicRasterState",
612 [Param("VkDevice", "device"),
613 Param("const VkDynamicRsStateCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchter502744a2015-04-10 16:24:50 -0600614 Param("VkDynamicRsState*", "pState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800615
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600616 Proto("VkResult", "CreateDynamicColorBlendState",
617 [Param("VkDevice", "device"),
618 Param("const VkDynamicCbStateCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchter502744a2015-04-10 16:24:50 -0600619 Param("VkDynamicCbState*", "pState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800620
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600621 Proto("VkResult", "CreateDynamicDepthStencilState",
622 [Param("VkDevice", "device"),
623 Param("const VkDynamicDsStateCreateInfo*", "pCreateInfo"),
Courtney Goeltzenleuchter502744a2015-04-10 16:24:50 -0600624 Param("VkDynamicDsState*", "pState")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800625
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600626 Proto("VkResult", "CreateCommandBuffer",
627 [Param("VkDevice", "device"),
628 Param("const VkCmdBufferCreateInfo*", "pCreateInfo"),
629 Param("VkCmdBuffer*", "pCmdBuffer")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800630
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600631 Proto("VkResult", "BeginCommandBuffer",
632 [Param("VkCmdBuffer", "cmdBuffer"),
633 Param("const VkCmdBufferBeginInfo*", "pBeginInfo")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800634
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600635 Proto("VkResult", "EndCommandBuffer",
636 [Param("VkCmdBuffer", "cmdBuffer")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800637
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600638 Proto("VkResult", "ResetCommandBuffer",
639 [Param("VkCmdBuffer", "cmdBuffer")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800640
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600641 Proto("void", "CmdBindPipeline",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600642 [Param("VkCmdBuffer", "cmdBuffer"),
643 Param("VkPipelineBindPoint", "pipelineBindPoint"),
644 Param("VkPipeline", "pipeline")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800645
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600646 Proto("void", "CmdBindDynamicStateObject",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600647 [Param("VkCmdBuffer", "cmdBuffer"),
648 Param("VkStateBindPoint", "stateBindPoint"),
649 Param("VkDynamicStateObject", "state")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800650
Chia-I Wu53f07d72015-03-28 15:23:55 +0800651 Proto("void", "CmdBindDescriptorSets",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600652 [Param("VkCmdBuffer", "cmdBuffer"),
653 Param("VkPipelineBindPoint", "pipelineBindPoint"),
Cody Northropd4c1a502015-04-16 13:41:56 -0600654 Param("uint32_t", "firstSet"),
655 Param("uint32_t", "setCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600656 Param("const VkDescriptorSet*", "pDescriptorSets"),
Cody Northropd4c1a502015-04-16 13:41:56 -0600657 Param("uint32_t", "dynamicOffsetCount"),
658 Param("const uint32_t*", "pDynamicOffsets")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800659
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600660 Proto("void", "CmdBindVertexBuffers",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600661 [Param("VkCmdBuffer", "cmdBuffer"),
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -0600662 Param("uint32_t", "startBinding"),
663 Param("uint32_t", "bindingCount"),
664 Param("const VkBuffer*", "pBuffers"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600665 Param("const VkDeviceSize*", "pOffsets")]),
666
Chia-I Wu7a42e122014-11-08 10:48:20 +0800667
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600668 Proto("void", "CmdBindIndexBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600669 [Param("VkCmdBuffer", "cmdBuffer"),
670 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600671 Param("VkDeviceSize", "offset"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600672 Param("VkIndexType", "indexType")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800673
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600674 Proto("void", "CmdDraw",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600675 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600676 Param("uint32_t", "firstVertex"),
677 Param("uint32_t", "vertexCount"),
678 Param("uint32_t", "firstInstance"),
679 Param("uint32_t", "instanceCount")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800680
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600681 Proto("void", "CmdDrawIndexed",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600682 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600683 Param("uint32_t", "firstIndex"),
684 Param("uint32_t", "indexCount"),
685 Param("int32_t", "vertexOffset"),
686 Param("uint32_t", "firstInstance"),
687 Param("uint32_t", "instanceCount")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800688
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600689 Proto("void", "CmdDrawIndirect",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600690 [Param("VkCmdBuffer", "cmdBuffer"),
691 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600692 Param("VkDeviceSize", "offset"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600693 Param("uint32_t", "count"),
694 Param("uint32_t", "stride")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800695
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600696 Proto("void", "CmdDrawIndexedIndirect",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600697 [Param("VkCmdBuffer", "cmdBuffer"),
698 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600699 Param("VkDeviceSize", "offset"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600700 Param("uint32_t", "count"),
701 Param("uint32_t", "stride")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800702
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600703 Proto("void", "CmdDispatch",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600704 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600705 Param("uint32_t", "x"),
706 Param("uint32_t", "y"),
707 Param("uint32_t", "z")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800708
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600709 Proto("void", "CmdDispatchIndirect",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600710 [Param("VkCmdBuffer", "cmdBuffer"),
711 Param("VkBuffer", "buffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600712 Param("VkDeviceSize", "offset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800713
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600714 Proto("void", "CmdCopyBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600715 [Param("VkCmdBuffer", "cmdBuffer"),
716 Param("VkBuffer", "srcBuffer"),
717 Param("VkBuffer", "destBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600718 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600719 Param("const VkBufferCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800720
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600721 Proto("void", "CmdCopyImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600722 [Param("VkCmdBuffer", "cmdBuffer"),
723 Param("VkImage", "srcImage"),
724 Param("VkImageLayout", "srcImageLayout"),
725 Param("VkImage", "destImage"),
726 Param("VkImageLayout", "destImageLayout"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600727 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600728 Param("const VkImageCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800729
Courtney Goeltzenleuchter89299fa2015-03-08 17:02:18 -0600730 Proto("void", "CmdBlitImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600731 [Param("VkCmdBuffer", "cmdBuffer"),
732 Param("VkImage", "srcImage"),
733 Param("VkImageLayout", "srcImageLayout"),
734 Param("VkImage", "destImage"),
735 Param("VkImageLayout", "destImageLayout"),
Courtney Goeltzenleuchter89299fa2015-03-08 17:02:18 -0600736 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600737 Param("const VkImageBlit*", "pRegions")]),
Courtney Goeltzenleuchter89299fa2015-03-08 17:02:18 -0600738
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600739 Proto("void", "CmdCopyBufferToImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600740 [Param("VkCmdBuffer", "cmdBuffer"),
741 Param("VkBuffer", "srcBuffer"),
742 Param("VkImage", "destImage"),
743 Param("VkImageLayout", "destImageLayout"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600744 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600745 Param("const VkBufferImageCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800746
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600747 Proto("void", "CmdCopyImageToBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600748 [Param("VkCmdBuffer", "cmdBuffer"),
749 Param("VkImage", "srcImage"),
750 Param("VkImageLayout", "srcImageLayout"),
751 Param("VkBuffer", "destBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600752 Param("uint32_t", "regionCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600753 Param("const VkBufferImageCopy*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800754
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600755 Proto("void", "CmdCloneImageData",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600756 [Param("VkCmdBuffer", "cmdBuffer"),
757 Param("VkImage", "srcImage"),
758 Param("VkImageLayout", "srcImageLayout"),
759 Param("VkImage", "destImage"),
760 Param("VkImageLayout", "destImageLayout")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800761
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600762 Proto("void", "CmdUpdateBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600763 [Param("VkCmdBuffer", "cmdBuffer"),
764 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600765 Param("VkDeviceSize", "destOffset"),
766 Param("VkDeviceSize", "dataSize"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600767 Param("const uint32_t*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800768
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600769 Proto("void", "CmdFillBuffer",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600770 [Param("VkCmdBuffer", "cmdBuffer"),
771 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600772 Param("VkDeviceSize", "destOffset"),
773 Param("VkDeviceSize", "fillSize"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600774 Param("uint32_t", "data")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800775
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600776 Proto("void", "CmdClearColorImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600777 [Param("VkCmdBuffer", "cmdBuffer"),
778 Param("VkImage", "image"),
779 Param("VkImageLayout", "imageLayout"),
Courtney Goeltzenleuchterd7a5cff2015-04-23 17:49:22 -0600780 Param("const VkClearColor*", "pColor"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600781 Param("uint32_t", "rangeCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600782 Param("const VkImageSubresourceRange*", "pRanges")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800783
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600784 Proto("void", "CmdClearDepthStencil",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600785 [Param("VkCmdBuffer", "cmdBuffer"),
786 Param("VkImage", "image"),
787 Param("VkImageLayout", "imageLayout"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600788 Param("float", "depth"),
789 Param("uint32_t", "stencil"),
790 Param("uint32_t", "rangeCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600791 Param("const VkImageSubresourceRange*", "pRanges")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800792
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600793 Proto("void", "CmdResolveImage",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600794 [Param("VkCmdBuffer", "cmdBuffer"),
795 Param("VkImage", "srcImage"),
796 Param("VkImageLayout", "srcImageLayout"),
797 Param("VkImage", "destImage"),
798 Param("VkImageLayout", "destImageLayout"),
Tony Barbour6865d4a2015-04-13 15:02:52 -0600799 Param("uint32_t", "regionCount"),
800 Param("const VkImageResolve*", "pRegions")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800801
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600802 Proto("void", "CmdSetEvent",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600803 [Param("VkCmdBuffer", "cmdBuffer"),
804 Param("VkEvent", "event"),
805 Param("VkPipeEvent", "pipeEvent")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800806
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600807 Proto("void", "CmdResetEvent",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600808 [Param("VkCmdBuffer", "cmdBuffer"),
809 Param("VkEvent", "event"),
810 Param("VkPipeEvent", "pipeEvent")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800811
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600812 Proto("void", "CmdWaitEvents",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600813 [Param("VkCmdBuffer", "cmdBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600814 Param("VkWaitEvent", "waitEvent"),
815 Param("uint32_t", "eventCount"),
816 Param("const VkEvent*", "pEvents"),
817 Param("uint32_t", "memBarrierCount"),
818 Param("const void**", "ppMemBarriers")]),
Mike Stroyanfb80d5f2014-12-04 11:08:39 +0000819
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600820 Proto("void", "CmdPipelineBarrier",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600821 [Param("VkCmdBuffer", "cmdBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600822 Param("VkWaitEvent", "waitEvent"),
823 Param("uint32_t", "pipeEventCount"),
824 Param("const VkPipeEvent*", "pPipeEvents"),
825 Param("uint32_t", "memBarrierCount"),
826 Param("const void**", "ppMemBarriers")]),
Mike Stroyanfb80d5f2014-12-04 11:08:39 +0000827
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600828 Proto("void", "CmdBeginQuery",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600829 [Param("VkCmdBuffer", "cmdBuffer"),
830 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600831 Param("uint32_t", "slot"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600832 Param("VkFlags", "flags")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800833
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600834 Proto("void", "CmdEndQuery",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600835 [Param("VkCmdBuffer", "cmdBuffer"),
836 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600837 Param("uint32_t", "slot")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800838
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600839 Proto("void", "CmdResetQueryPool",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600840 [Param("VkCmdBuffer", "cmdBuffer"),
841 Param("VkQueryPool", "queryPool"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600842 Param("uint32_t", "startQuery"),
843 Param("uint32_t", "queryCount")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800844
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600845 Proto("void", "CmdWriteTimestamp",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600846 [Param("VkCmdBuffer", "cmdBuffer"),
847 Param("VkTimestampType", "timestampType"),
848 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600849 Param("VkDeviceSize", "destOffset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800850
Courtney Goeltzenleuchter1dbc8e22015-04-15 18:21:13 -0600851 Proto("void", "CmdCopyQueryPoolResults",
852 [Param("VkCmdBuffer", "cmdBuffer"),
853 Param("VkQueryPool", "queryPool"),
854 Param("uint32_t", "startQuery"),
855 Param("uint32_t", "queryCount"),
856 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600857 Param("VkDeviceSize", "destOffset"),
858 Param("VkDeviceSize", "destStride"),
Courtney Goeltzenleuchter1dbc8e22015-04-15 18:21:13 -0600859 Param("VkFlags", "flags")]),
860
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600861 Proto("void", "CmdInitAtomicCounters",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600862 [Param("VkCmdBuffer", "cmdBuffer"),
863 Param("VkPipelineBindPoint", "pipelineBindPoint"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600864 Param("uint32_t", "startCounter"),
865 Param("uint32_t", "counterCount"),
866 Param("const uint32_t*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800867
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600868 Proto("void", "CmdLoadAtomicCounters",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600869 [Param("VkCmdBuffer", "cmdBuffer"),
870 Param("VkPipelineBindPoint", "pipelineBindPoint"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600871 Param("uint32_t", "startCounter"),
872 Param("uint32_t", "counterCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600873 Param("VkBuffer", "srcBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600874 Param("VkDeviceSize", "srcOffset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800875
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600876 Proto("void", "CmdSaveAtomicCounters",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600877 [Param("VkCmdBuffer", "cmdBuffer"),
878 Param("VkPipelineBindPoint", "pipelineBindPoint"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600879 Param("uint32_t", "startCounter"),
880 Param("uint32_t", "counterCount"),
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600881 Param("VkBuffer", "destBuffer"),
Tony Barbourd1c35722015-04-16 15:59:00 -0600882 Param("VkDeviceSize", "destOffset")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800883
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600884 Proto("VkResult", "CreateFramebuffer",
885 [Param("VkDevice", "device"),
886 Param("const VkFramebufferCreateInfo*", "pCreateInfo"),
887 Param("VkFramebuffer*", "pFramebuffer")]),
Jeremy Hayesd65ae082015-01-14 16:17:08 -0700888
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600889 Proto("VkResult", "CreateRenderPass",
890 [Param("VkDevice", "device"),
891 Param("const VkRenderPassCreateInfo*", "pCreateInfo"),
892 Param("VkRenderPass*", "pRenderPass")]),
Jeremy Hayesd65ae082015-01-14 16:17:08 -0700893
Jon Ashburne13f1982015-02-02 09:58:11 -0700894 Proto("void", "CmdBeginRenderPass",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600895 [Param("VkCmdBuffer", "cmdBuffer"),
896 Param("const VkRenderPassBegin*", "pRenderPassBegin")]),
Jon Ashburne13f1982015-02-02 09:58:11 -0700897
898 Proto("void", "CmdEndRenderPass",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600899 [Param("VkCmdBuffer", "cmdBuffer"),
900 Param("VkRenderPass", "renderPass")]),
Jon Ashburne13f1982015-02-02 09:58:11 -0700901
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600902 Proto("VkResult", "DbgSetValidationLevel",
903 [Param("VkDevice", "device"),
904 Param("VkValidationLevel", "validationLevel")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800905
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600906 Proto("VkResult", "DbgRegisterMsgCallback",
907 [Param("VkInstance", "instance"),
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600908 Param("VK_DBG_MSG_CALLBACK_FUNCTION", "pfnMsgCallback"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600909 Param("void*", "pUserData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800910
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600911 Proto("VkResult", "DbgUnregisterMsgCallback",
912 [Param("VkInstance", "instance"),
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600913 Param("VK_DBG_MSG_CALLBACK_FUNCTION", "pfnMsgCallback")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800914
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600915 Proto("VkResult", "DbgSetMessageFilter",
916 [Param("VkDevice", "device"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600917 Param("int32_t", "msgCode"),
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600918 Param("VK_DBG_MSG_FILTER", "filter")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800919
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600920 Proto("VkResult", "DbgSetObjectTag",
Mike Stroyanb050c682015-04-17 12:36:38 -0600921 [Param("VkDevice", "device"),
922 Param("VkObject", "object"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600923 Param("size_t", "tagSize"),
924 Param("const void*", "pTag")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800925
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600926 Proto("VkResult", "DbgSetGlobalOption",
927 [Param("VkInstance", "instance"),
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600928 Param("VK_DBG_GLOBAL_OPTION", "dbgOption"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600929 Param("size_t", "dataSize"),
930 Param("const void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800931
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600932 Proto("VkResult", "DbgSetDeviceOption",
933 [Param("VkDevice", "device"),
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600934 Param("VK_DBG_DEVICE_OPTION", "dbgOption"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600935 Param("size_t", "dataSize"),
936 Param("const void*", "pData")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800937
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600938 Proto("void", "CmdDbgMarkerBegin",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600939 [Param("VkCmdBuffer", "cmdBuffer"),
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600940 Param("const char*", "pMarker")]),
Chia-I Wufb2559d2014-08-01 11:19:52 +0800941
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600942 Proto("void", "CmdDbgMarkerEnd",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600943 [Param("VkCmdBuffer", "cmdBuffer")]),
Chia-I Wue442dc32015-01-01 09:31:15 +0800944 ],
Chia-I Wufb2559d2014-08-01 11:19:52 +0800945)
946
Chia-I Wuf8693382015-04-16 22:02:10 +0800947wsi_lunarg = Extension(
948 name="VK_WSI_LunarG",
949 headers=["vk_wsi_lunarg.h"],
950 objects=[
951 "VkDisplayWSI",
952 "VkSwapChainWSI",
953 ],
Chia-I Wue442dc32015-01-01 09:31:15 +0800954 protos=[
Chia-I Wuf8693382015-04-16 22:02:10 +0800955 Proto("VkResult", "GetDisplayInfoWSI",
956 [Param("VkDisplayWSI", "display"),
957 Param("VkDisplayInfoTypeWSI", "infoType"),
958 Param("size_t*", "pDataSize"),
959 Param("void*", "pData")]),
Chia-I Wu6bdf0192014-09-13 13:36:06 +0800960
Chia-I Wuf8693382015-04-16 22:02:10 +0800961 Proto("VkResult", "CreateSwapChainWSI",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600962 [Param("VkDevice", "device"),
Chia-I Wuf8693382015-04-16 22:02:10 +0800963 Param("const VkSwapChainCreateInfoWSI*", "pCreateInfo"),
964 Param("VkSwapChainWSI*", "pSwapChain")]),
Chia-I Wu6dee8b82014-09-23 10:37:23 +0800965
Chia-I Wuf8693382015-04-16 22:02:10 +0800966 Proto("VkResult", "DestroySwapChainWSI",
967 [Param("VkSwapChainWSI", "swapChain")]),
Chia-I Wu6dee8b82014-09-23 10:37:23 +0800968
Chia-I Wuf8693382015-04-16 22:02:10 +0800969 Proto("VkResult", "GetSwapChainInfoWSI",
970 [Param("VkSwapChainWSI", "swapChain"),
971 Param("VkSwapChainInfoTypeWSI", "infoType"),
972 Param("size_t*", "pDataSize"),
973 Param("void*", "pData")]),
974
975 Proto("VkResult", "QueuePresentWSI",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600976 [Param("VkQueue", "queue"),
Chia-I Wuf8693382015-04-16 22:02:10 +0800977 Param("const VkPresentInfoWSI*", "pPresentInfo")]),
Chia-I Wue442dc32015-01-01 09:31:15 +0800978 ],
Chia-I Wu6dee8b82014-09-23 10:37:23 +0800979)
980
Chia-I Wuf8693382015-04-16 22:02:10 +0800981extensions = [core, wsi_lunarg]
Chia-I Wuc4f24e82015-01-01 08:46:31 +0800982
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700983object_root_list = [
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600984 "VkInstance",
Tony Barbourd1c35722015-04-16 15:59:00 -0600985 "VkPhysicalDevice",
Chia-I Wuf8693382015-04-16 22:02:10 +0800986 "VkDisplayWSI",
987 "VkSwapChainWSI",
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700988]
989
990object_base_list = [
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600991 "VkDevice",
992 "VkQueue",
Tony Barbourd1c35722015-04-16 15:59:00 -0600993 "VkDeviceMemory",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600994 "VkObject"
Tobin Ehlis7e65d752015-01-15 17:51:52 -0700995]
996
997object_list = [
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600998 "VkBuffer",
999 "VkBufferView",
1000 "VkImage",
1001 "VkImageView",
1002 "VkColorAttachmentView",
1003 "VkDepthStencilView",
1004 "VkShader",
1005 "VkPipeline",
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -05001006 "VkPipelineLayout",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001007 "VkSampler",
1008 "VkDescriptorSet",
1009 "VkDescriptorSetLayout",
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001010 "VkDescriptorPool",
1011 "VkDynamicStateObject",
1012 "VkCmdBuffer",
1013 "VkFence",
1014 "VkSemaphore",
1015 "VkEvent",
1016 "VkQueryPool",
1017 "VkFramebuffer",
1018 "VkRenderPass"
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001019]
1020
1021object_dynamic_state_list = [
Courtney Goeltzenleuchter502744a2015-04-10 16:24:50 -06001022 "VkDynamicVpState",
1023 "VkDynamicRsState",
1024 "VkDynamicCbState",
1025 "VkDynamicDsState"
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001026]
1027
1028object_type_list = object_root_list + object_base_list + object_list + object_dynamic_state_list
1029
Mike Stroyanb050c682015-04-17 12:36:38 -06001030object_parent_list = ["VkObject", "VkDynamicStateObject"]
Tobin Ehlis7e65d752015-01-15 17:51:52 -07001031
Chia-I Wuc4f24e82015-01-01 08:46:31 +08001032headers = []
Chia-I Wue86d8ab2015-01-04 14:46:22 +08001033objects = []
Chia-I Wuc4f24e82015-01-01 08:46:31 +08001034protos = []
1035for ext in extensions:
1036 headers.extend(ext.headers)
Chia-I Wue86d8ab2015-01-04 14:46:22 +08001037 objects.extend(ext.objects)
Chia-I Wuc4f24e82015-01-01 08:46:31 +08001038 protos.extend(ext.protos)
Chia-I Wu6dee8b82014-09-23 10:37:23 +08001039
Chia-I Wu9a4ceb12015-01-01 14:45:58 +08001040proto_names = [proto.name for proto in protos]
Chia-I Wu900a2572014-08-01 14:44:16 +08001041
Courtney Goeltzenleuchterf53c3cb2015-04-14 14:55:44 -06001042def parse_vk_h(filename):
Chia-I Wu509a4122015-01-04 14:08:46 +08001043 # read object and protoype typedefs
1044 object_lines = []
1045 proto_lines = []
1046 with open(filename, "r") as fp:
1047 for line in fp:
1048 line = line.strip()
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001049 if line.startswith("VK_DEFINE"):
Chia-I Wu509a4122015-01-04 14:08:46 +08001050 begin = line.find("(") + 1
1051 end = line.find(",")
1052 # extract the object type
1053 object_lines.append(line[begin:end])
1054 if line.startswith("typedef") and line.endswith(");"):
1055 # drop leading "typedef " and trailing ");"
1056 proto_lines.append(line[8:-2])
1057
1058 # parse proto_lines to protos
1059 protos = []
1060 for line in proto_lines:
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001061 first, rest = line.split(" (VKAPI *PFN_vk")
1062 second, third = rest.split(")(")
Chia-I Wu509a4122015-01-04 14:08:46 +08001063
1064 # get the return type, no space before "*"
1065 proto_ret = "*".join([t.rstrip() for t in first.split("*")])
1066
1067 # get the name
1068 proto_name = second.strip()
1069
1070 # get the list of params
1071 param_strs = third.split(", ")
1072 params = []
1073 for s in param_strs:
1074 ty, name = s.rsplit(" ", 1)
1075
1076 # no space before "*"
1077 ty = "*".join([t.rstrip() for t in ty.split("*")])
1078 # attach [] to ty
1079 idx = name.rfind("[")
1080 if idx >= 0:
1081 ty += name[idx:]
1082 name = name[:idx]
1083
1084 params.append(Param(ty, name))
1085
1086 protos.append(Proto(proto_ret, proto_name, params))
1087
1088 # make them an extension and print
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001089 ext = Extension("VK_CORE",
Courtney Goeltzenleuchterf53c3cb2015-04-14 14:55:44 -06001090 headers=["vulkan.h", "vkDbg.h"],
Chia-I Wu509a4122015-01-04 14:08:46 +08001091 objects=object_lines,
1092 protos=protos)
1093 print("core =", str(ext))
1094
1095 print("")
Jon Ashburnbacb0f52015-04-06 10:58:22 -06001096 print("typedef struct VkLayerDispatchTable_")
Chia-I Wu509a4122015-01-04 14:08:46 +08001097 print("{")
1098 for proto in ext.protos:
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001099 print(" vk%sType %s;" % (proto.name, proto.name))
Jon Ashburnbacb0f52015-04-06 10:58:22 -06001100 print("} VkLayerDispatchTable;")
Chia-I Wu509a4122015-01-04 14:08:46 +08001101
1102if __name__ == "__main__":
Courtney Goeltzenleuchterf53c3cb2015-04-14 14:55:44 -06001103 parse_vk_h("include/vulkan.h")