49 Image(
LabEngine *vm) : _width(0), _height(0), _imageData(
nullptr), _vm(vm), _autoFree(
true) {}
50 Image(
int w,
int h, byte *d,
LabEngine *vm,
bool autoFree =
true) : _width(w), _height(h), _imageData(d), _vm(vm), _autoFree(autoFree) {}
54 void setData(byte *d,
bool autoFree =
true);
59 void drawImage(uint16 x, uint16 y);
64 void drawMaskImage(uint16 x, uint16 y);
69 void readScreenImage(uint16 x, uint16 y);
74 void blitBitmap(uint16 srcX, uint16 srcY,
Image *imgDest, uint16 destX, uint16 destY, uint16 width, uint16 height, byte masked);
Definition: algorithm.h:29
Definition: movie_decoder.h:32