MCPcopy Create free account
hub / github.com/OpenImageDebugger/OpenImageDebugger / AssembledBuffer

Class AssembledBuffer

src/ipc/buffer_assembler.h:39–50  ·  view source on GitHub ↗

Geometry + completed bytes for a buffer reassembled from row-strip chunks.

Source from the content-addressed store, hash-verified

37
38// Geometry + completed bytes for a buffer reassembled from row-strip chunks.
39struct 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
52class BufferAssembler {
53 public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected