![]() |
Murl Engine Lua Addon API
Version 1.0 beta
|
The MutableData object holds a pointer and size information to a mutable memory data location.
The default constructor.
Murl.MutableData new()
Copy the memory data to a destination data object. The destination data object must have already assigned memory. A valid byte offset is in range [0 .. GetByteSize() - 1].
Integer, Murl.MutableData CopyDataTo(Murl.MutableData destination, Integer byteOffset)
destination | The the destination data object. |
byteOffset | The source byte offset. |
Copy the memory data from a source data object. The data object must have already assigned memory. A valid byte offset is in range [0 .. GetByteSize() - 1].
Integer CopyDataFrom(Murl.ConstData source, Integer byteOffset)
source | The source data object. |
byteOffset | The destination byte offset. |