GLImageData.h 261 Bytes
Newer Older
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
1 2
#import <GLKit/GLKit.h>

3
@interface GLImageData: NSObject
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
4 5 6 7 8 9 10 11

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

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

@end