Commit 66e0e071 authored by Michał Janiszewski's avatar Michał Janiszewski Committed by Alexandre Julliard

winevulkan: Remove unused variable in make_vulkan.

parent 03800be0
......@@ -1778,10 +1778,8 @@ class ConversionFunction(object):
if self.direction == Direction.OUTPUT:
params = ["const {0}_host *in".format(self.type), "{0} *out".format(self.type), "uint32_t count"]
return_type = self.type
else:
params = ["const {0} *in".format(self.type), "{0} *out_host".format(self.type), "uint32_t count"]
return_type = "{0}_host".format(self.type)
# Generate function prototype.
body = "static inline void {0}(".format(self.name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment