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-SnapChatCamera/ManagedCapturer/SCManagedVideoARDataSource.h
2018-08-08 02:32:46 +03:00

25 lines
535 B
Objective-C

//
// SCManagedVideoARDataSource.h
// Snapchat
//
// Created by Eyal Segal on 20/10/2017.
//
#import "SCCapturerDefines.h"
#import <SCCameraFoundation/SCManagedVideoDataSource.h>
#import <ARKit/ARKit.h>
@protocol SCManagedVideoARDataSource <SCManagedVideoDataSource>
@property (atomic, strong) ARFrame *currentFrame NS_AVAILABLE_IOS(11_0);
#ifdef SC_USE_ARKIT_FACE
@property (atomic, strong) AVDepthData *lastDepthData NS_AVAILABLE_IOS(11_0);
#endif
@property (atomic, assign) float fieldOfView NS_AVAILABLE_IOS(11_0);
@end