GLCanvas.h 398 Bytes
Newer Older
1 2 3 4 5 6 7
#import <GLKit/GLKit.h>
#import "GLData.h"

@interface GLCanvas: GLKView

@property (nonatomic) GLData *data;
@property (nonatomic) BOOL opaque;
8
@property (nonatomic) NSNumber *nbContentTextures;
9
@property (nonatomic) NSNumber *renderId;
10
@property (nonatomic) NSArray *imagesToPreload;
11 12 13 14 15

- (instancetype)initWithBridge:(RCTBridge *)bridge
                   withContext:(EAGLContext*)context;

@end