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
27 lines
542 B
//
|
|
// 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
|