1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChat/Lens/SCManagedCapturerGLViewManagerAPI.h
2018-05-24 00:24:20 +03:00

28 lines
542 B
Objective-C

//
// SCManagedCapturerGLViewManagerAPI.h
// SCCamera
//
// Created by Michel Loenngren on 4/11/18.
//
#import <Looksery/LSAGLView.h>
#import <Foundation/Foundation.h>
@class SCCaptureResource;
/**
Bridging protocol for providing a glViewManager to capture core.
*/
@protocol SCManagedCapturerGLViewManagerAPI <NSObject>
@property (nonatomic, readonly, strong) LSAGLView *view;
- (void)configureWithCaptureResource:(SCCaptureResource *)captureResource;
- (void)setLensesActive:(BOOL)active;
- (void)prepareViewIfNecessary;
@end