mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
456 B
Objective-C
20 lines
456 B
Objective-C
#import "PGPhotoProcessPass.h"
|
|
|
|
typedef enum
|
|
{
|
|
PGBlurToolTypeNone,
|
|
PGBlurToolTypeRadial,
|
|
PGBlurToolTypeLinear,
|
|
PGBlurToolTypePortrait
|
|
} PGBlurToolType;
|
|
|
|
@interface PGPhotoBlurPass : PGPhotoProcessPass
|
|
|
|
@property (nonatomic, assign) PGBlurToolType type;
|
|
@property (nonatomic, assign) CGFloat size;
|
|
@property (nonatomic, assign) CGFloat falloff;
|
|
@property (nonatomic, assign) CGPoint point;
|
|
@property (nonatomic, assign) CGFloat angle;
|
|
|
|
@end
|