mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
18 lines
312 B
Objective-C
Executable File
18 lines
312 B
Objective-C
Executable File
#import "EXGLViewManager.h"
|
|
|
|
#import "EXGLView.h"
|
|
|
|
@implementation EXGLViewManager
|
|
|
|
RCT_EXPORT_MODULE(EXGLViewManager);
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[EXGLView alloc] initWithManager:self];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(onSurfaceCreate, RCTDirectEventBlock);
|
|
RCT_EXPORT_VIEW_PROPERTY(msaaSamples, NSNumber);
|
|
|
|
@end
|