1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 17:38:07 +01:00
Telegram/thirdparty/PGPhotoEditor/PGPhotoBlurPass.h

19 lines
428 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#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