12345678910111213141516171819 |
- //
- // STGLPreview.h
- //
- // Created by sluin on 2017/1/11.
- // Copyright © 2017年 SenseTime. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <OpenGLES/ES3/glext.h>
- @interface STGLPreview : UIView
- @property (nonatomic , strong) EAGLContext *glContext;
- - (instancetype)initWithFrame:(CGRect)frame context:(EAGLContext *)context;
- - (void)renderTexture:(GLuint)texture;
- @end
|