eqemu

view src/fblur.h @ 10:819c7ebb1bec

added libimago to avoid the external dependency
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 18 Jul 2014 05:07:40 +0300
parents
children 2656099aff12
line source
1 #ifndef FBLUR_H_
2 #define FBLUR_H_
4 #include <inttypes.h>
6 enum {
7 BLUR_BOTH, /* blur in X and Y */
8 BLUR_HORIZ, /* blur in X */
9 BLUR_VERT /* blur in Y */
10 };
12 void fast_blur(int dir, int amount, uint32_t *buf, int x, int y);
14 #endif /* FBLUR_H_ */