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.

23 lines
603 B

  1. //
  2. // SCManagedCapturerARImageCaptureProvider.h
  3. // SCCamera
  4. //
  5. // Created by Michel Loenngren on 4/11/18.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class SCManagedStillImageCapturer;
  9. @protocol SCManagedCapturerLensAPI
  10. , SCPerforming;
  11. /**
  12. Bridging protocol providing the ARImageCapturer subclass of SCManagedStillImageCapturer
  13. to capture core.
  14. */
  15. @protocol SCManagedCapturerARImageCaptureProvider <NSObject>
  16. - (SCManagedStillImageCapturer *)arImageCapturerWith:(id<SCPerforming>)performer
  17. lensProcessingCore:(id<SCManagedCapturerLensAPI>)lensProcessingCore;
  18. @end