Adding JPEG/PNG file loading (PVRTC stub)
This commit is contained in:
committed by
Joshua Granick
parent
429f9bac86
commit
9f6debd95b
@@ -1,15 +1,28 @@
|
||||
#ifndef LIME_GRAPHICS_IMAGE_DATA_H
|
||||
#define LIME_GRAPHICS_IMAGE_DATA_H
|
||||
|
||||
#include <hx/CFFI.h>
|
||||
#include <utils/ByteArray.h>
|
||||
|
||||
|
||||
namespace lime {
|
||||
|
||||
|
||||
struct ImageData {
|
||||
class ImageData {
|
||||
|
||||
public:
|
||||
|
||||
int width;
|
||||
int height;
|
||||
unsigned char data;
|
||||
ByteArray *data;
|
||||
|
||||
ImageData();
|
||||
~ImageData();
|
||||
value Value();
|
||||
|
||||
private:
|
||||
|
||||
value mValue;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user