eqemu

view src/fblur.h @ 8:c3b48cb2797f

forgot to add the new files
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 18 Jul 2014 04:25:24 +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_ */