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.

29 lines
827 B

  1. //
  2. // SCProcessingPipelineBuilder.h
  3. // Snapchat
  4. //
  5. // Created by Yu-Kuan (Anthony) Lai on 6/1/17.
  6. // Copyright © 2017 Snapchat, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class SCDigitalExposureHandler;
  10. @class SCProcessingPipeline;
  11. /*
  12. @class SCProcessingPipelineBuilder
  13. The builder object is responsible for creating the SCProcessingPipeline, the underneath
  14. SCProcessingModules, and eventually chaining the SCProcessingModules together in a pre-determined
  15. order. The builder is also responsible for providing consumers with handler objects.
  16. */
  17. @interface SCProcessingPipelineBuilder : NSObject
  18. @property (nonatomic) BOOL useExposureAdjust;
  19. @property (nonatomic) BOOL portraitModeEnabled;
  20. @property (nonatomic) BOOL enhancedNightMode;
  21. - (SCProcessingPipeline *)build;
  22. @end