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

@interface GLCanvas: GLKView

@property (nonatomic) GLData *data;
@property (nonatomic) BOOL opaque;
@property (nonatomic) NSNumber *nbTargets;
9
@property (nonatomic) NSNumber *renderId;
10 11 12 13 14

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

@end