eqemu
diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/fblur.h Fri Jul 18 04:25:24 2014 +0300 1.3 @@ -0,0 +1,14 @@ 1.4 +#ifndef FBLUR_H_ 1.5 +#define FBLUR_H_ 1.6 + 1.7 +#include <inttypes.h> 1.8 + 1.9 +enum { 1.10 + BLUR_BOTH, /* blur in X and Y */ 1.11 + BLUR_HORIZ, /* blur in X */ 1.12 + BLUR_VERT /* blur in Y */ 1.13 +}; 1.14 + 1.15 +void fast_blur(int dir, int amount, uint32_t *buf, int x, int y); 1.16 + 1.17 +#endif /* FBLUR_H_ */