ImageData.h 259 Bytes
Newer Older
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
1 2 3 4 5 6 7 8 9 10 11
#import <GLKit/GLKit.h>

@interface ImageData: NSObject

@property (nonatomic) GLubyte *data;
@property (nonatomic) int width;
@property (nonatomic) int height;

- (instancetype)initWithData: (GLubyte *)data withWidth:(int)width withHeight:(int)height;

@end