1 /*
2  * OpenBOR - http://www.LavaLit.com
3  * -----------------------------------------------------------------------
4  * All rights reserved, see LICENSE in OpenBOR root for details.
5  *
6  * Copyright (c) 2004 - 2011 OpenBOR Team
7  */
8 
9 #ifndef __FILTERS_H__
10 #define __FILTERS_H__
11 
12 #include "gfxtypes.h"
13 
14 extern void filter_tv2x      (u8*, u32, u8*, u8*, u32, int, int);
15 extern void filter_normal2x  (u8*, u32, u8*, u8*, u32, int, int);
16 extern void filter_dotmatrix (u8*, u32, u8*, u8*, u32, int, int);
17 extern void filter_bicubic   (u8*, u32, u8*, u8*, u32, int, int);
18 
19 #endif
20