winevulkan: Remove unused variable in make_vulkan.
Signed-off-by: Michał Janiszewski <janisozaur@gmail.com> Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
03800be0da
commit
66e0e07152
|
@ -1778,10 +1778,8 @@ class ConversionFunction(object):
|
||||||
|
|
||||||
if self.direction == Direction.OUTPUT:
|
if self.direction == Direction.OUTPUT:
|
||||||
params = ["const {0}_host *in".format(self.type), "{0} *out".format(self.type), "uint32_t count"]
|
params = ["const {0}_host *in".format(self.type), "{0} *out".format(self.type), "uint32_t count"]
|
||||||
return_type = self.type
|
|
||||||
else:
|
else:
|
||||||
params = ["const {0} *in".format(self.type), "{0} *out_host".format(self.type), "uint32_t count"]
|
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.
|
# Generate function prototype.
|
||||||
body = "static inline void {0}(".format(self.name)
|
body = "static inline void {0}(".format(self.name)
|
||||||
|
|
Loading…
Reference in New Issue