2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
542 B

  1. //
  2. // SCManagedCapturerGLViewManagerAPI.h
  3. // SCCamera
  4. //
  5. // Created by Michel Loenngren on 4/11/18.
  6. //
  7. #import <Looksery/LSAGLView.h>
  8. #import <Foundation/Foundation.h>
  9. @class SCCaptureResource;
  10. /**
  11. Bridging protocol for providing a glViewManager to capture core.
  12. */
  13. @protocol SCManagedCapturerGLViewManagerAPI <NSObject>
  14. @property (nonatomic, readonly, strong) LSAGLView *view;
  15. - (void)configureWithCaptureResource:(SCCaptureResource *)captureResource;
  16. - (void)setLensesActive:(BOOL)active;
  17. - (void)prepareViewIfNecessary;
  18. @end