Adds the provided constant data blobs to the program.
(program: Program, blobs: Sequence[bytes])
| 52 | |
| 53 | |
| 54 | def add_constant_data(program: Program, blobs: Sequence[bytes]) -> None: |
| 55 | """Adds the provided constant data blobs to the program.""" |
| 56 | for blob in blobs: |
| 57 | program.constant_buffer.append(Buffer(storage=blob)) |
| 58 | |
| 59 | |
| 60 | def add_delegate_data( |
no test coverage detected