| 52 | class BufferAssembler { |
| 53 | public: |
| 54 | struct BeginParams { |
| 55 | std::string variable_name; |
| 56 | std::string display_name; |
| 57 | std::string pixel_layout; |
| 58 | bool transpose{}; |
| 59 | int width{}; |
| 60 | int height{}; |
| 61 | int channels{}; |
| 62 | int stride{}; |
| 63 | int type{}; |
| 64 | std::size_t total_byte_size; |
| 65 | }; |
| 66 | |
| 67 | // Start transfer for buffer `name`. |
| 68 | void begin(BeginParams params); |
nothing calls this directly
no outgoing calls
no test coverage detected