Hi,
I had some issues with the MemoryBlock::copyTo method in case offset > 0. Turns out, it always starts copying at offset 0.
Should be changed from “memcpy (d, data, num)” to something like “memcpy(d, data + offset, num)” or am I missing the point of the method?
Best,
Thomas