mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
12 lines
503 B
Objective-C
12 lines
503 B
Objective-C
#ifndef Telegram_FastBlur_h
|
|
#define Telegram_FastBlur_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
void imageFastBlur(int imageWidth, int imageHeight, int imageStride, void * _Nonnull pixels);
|
|
void telegramFastBlurMore(int imageWidth, int imageHeight, int imageStride, void * _Nonnull pixels);
|
|
void stickerThumbnailAlphaBlur(int imageWidth, int imageHeight, int imageStride, void * _Nonnull pixels);
|
|
void telegramBrightenImage(int imageWidth, int imageHeight, int imageStride, void * _Nonnull pixels);
|
|
|
|
#endif
|