Swiftgram/TelegramUI/FastBlur.h
2019-06-06 23:17:17 +01:00

12 lines
463 B
Objective-C

#ifndef Telegram_FastBlur_h
#define Telegram_FastBlur_h
#import <Foundation/Foundation.h>
void imageFastBlur(int imageWidth, int imageHeight, int imageStride, void *pixels);
void telegramFastBlurMore(int imageWidth, int imageHeight, int imageStride, void *pixels);
void stickerThumbnailAlphaBlur(int imageWidth, int imageHeight, int imageStride, void *pixels);
void telegramBrightenImage(int imageWidth, int imageHeight, int imageStride, void *pixels);
#endif