(self, *arr)
| 468 | super().__init__() |
| 469 | |
| 470 | def q(self, *arr): |
| 471 | super().q(*arr) |
| 472 | self.internal_cmd_sizes.append(len(arr)) |
| 473 | |
| 474 | def copy(self, dest:HCQBuffer, src:HCQBuffer, copy_size:int): |
| 475 | copied, copy_commands = 0, (copy_size + self.max_copy_size - 1) // self.max_copy_size |