mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 17:38:07 +01:00
19 lines
428 B
Objective-C
19 lines
428 B
Objective-C
#import "PGPhotoProcessPass.h"
|
|
|
|
typedef enum
|
|
{
|
|
PGBlurToolTypeNone,
|
|
PGBlurToolTypeRadial,
|
|
PGBlurToolTypeLinear
|
|
} 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
|