Geometry + completed bytes for a buffer reassembled from row-strip chunks.
| 37 | |
| 38 | // Geometry + completed bytes for a buffer reassembled from row-strip chunks. |
| 39 | struct AssembledBuffer { |
| 40 | std::string variable_name; |
| 41 | std::string display_name; |
| 42 | std::string pixel_layout; |
| 43 | bool transpose{}; |
| 44 | int width{}; |
| 45 | int height{}; |
| 46 | int channels{}; |
| 47 | int stride{}; |
| 48 | int type{}; |
| 49 | std::vector<std::byte> bytes; |
| 50 | }; |
| 51 | |
| 52 | class BufferAssembler { |
| 53 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected