STGLPreview.h 387 B

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