55 lines
878 B
C++
55 lines
878 B
C++
#include <graphics/Image.h>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
static int id_buffer;
|
|
static int id_height;
|
|
static int id_offsetX;
|
|
static int id_offsetY;
|
|
static int id_width;
|
|
static bool init = false;
|
|
|
|
|
|
Image::Image () {
|
|
|
|
buffer = 0;
|
|
height = 0;
|
|
offsetX = 0;
|
|
offsetY = 0;
|
|
width = 0;
|
|
|
|
}
|
|
|
|
|
|
Image::Image (value image) {
|
|
|
|
if (!init) {
|
|
|
|
id_buffer = val_id ("buffer");
|
|
id_height = val_id ("height");
|
|
id_offsetX = val_id ("offsetX");
|
|
id_offsetY = val_id ("offsetY");
|
|
id_width = val_id ("width");
|
|
init = true;
|
|
|
|
}
|
|
|
|
width = val_int (val_field (image, id_width));
|
|
height = val_int (val_field (image, id_height));
|
|
buffer = new ImageBuffer (val_field (image, id_buffer));
|
|
offsetX = val_int (val_field (image, id_offsetX));
|
|
offsetY = val_int (val_field (image, id_offsetY));
|
|
|
|
}
|
|
|
|
|
|
Image::~Image () {
|
|
|
|
delete buffer;
|
|
|
|
}
|
|
|
|
|
|
} |