Files
Swiftgram/TelegramCore/FastBlur.h
2016-08-16 14:02:36 +03:00

10 lines
273 B
Objective-C

#ifndef Telegram_FastBlur_h
#define Telegram_FastBlur_h
#import <Foundation/Foundation.h>
void telegramFastBlur(int imageWidth, int imageHeight, int imageStride, void *pixels);
void telegramDspBlur(int imageWidth, int imageHeight, int imageStride, void *pixels);
#endif