The OpenD Programming Language

Image._allocArea

Pointer to the malloc area holding the data. _allocArea being null signify that there is no data, or that the data is borrowed. _allocArea not being null signify that the image is owning its data.

struct Image
package nothrow @nogc @safe
ubyte* _allocArea;

Meta