'start' parameter from Group.emit_pack_function() is useless.
Signed-off-by: Rafael Antognolli <rafael.antognolli@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
dwords[index + 1] = dwords[index]
index = index + 1
- def emit_pack_function(self, start):
+ def emit_pack_function(self):
dwords = {}
self.collect_dwords(dwords, 0, "")
# Cast dst to make header C++ friendly
print(" uint32_t * restrict dw = (uint32_t * restrict) dst;")
- group.emit_pack_function(0)
+ group.emit_pack_function()
print("}\n")