mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
14 lines
496 B
Objective-C
14 lines
496 B
Objective-C
#import "PGPhotoProcessPass.h"
|
|
|
|
@class TGPhotoEditingContext;
|
|
|
|
@interface PGPhotoCustomFilterPass : PGPhotoProcessPass
|
|
|
|
@property (nonatomic, assign) CGFloat intensity;
|
|
|
|
- (instancetype)initWithShaderFile:(NSString *)shaderFile textureFiles:(NSArray *)textureFiles;
|
|
- (instancetype)initWithShaderFile:(NSString *)shaderFile textureFiles:(NSArray *)textureFiles optimized:(bool)optimized;
|
|
- (instancetype)initWithShaderString:(NSString *)shaderString textureImages:(NSArray *)textureImages;
|
|
|
|
@end
|