SCCameraKitOutputRequiringPixelBuffer
Objective-C
@protocol SCCameraKitOutputRequiringPixelBuffer
Swift
protocol OutputRequiringPixelBuffer
Indicates that the conformer will require pixel buffer output. This incurs performance overhead, so do not use it unless you require it.
Note
This incurs performance overhead, so do not add outputs requiring this unless you need to.-
Whether the output is currently requiring pixel buffer output. Any custom implementers of this must call outputChangedRequirements: after modifying this property.
Declaration
Objective-C
@property (nonatomic) BOOL currentlyRequiresPixelBuffer;
Swift
var currentlyRequiresPixelBuffer: Bool { get set }
-
A delegate to receive notifications of changes
Note
The resolver will automatically set this propetyDeclaration
Objective-C
@property (nonatomic, weak, nullable) id<SCCameraKitOutputRequiringPixelBufferDelegate> delegate;
Swift
weak var delegate: (any SCCameraKitOutputRequiringPixelBufferDelegate)? { get set }