filters: Cleanup and preparation for changes.
[gfxprim.git] / include / filters / GP_Filters.h
blob3b0a95f57a7a72c2ca209fa1eaea3203ecafcc1c
1 /*****************************************************************************
2 * This file is part of gfxprim library. *
3 * *
4 * Gfxprim is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU Lesser General Public *
6 * License as published by the Free Software Foundation; either *
7 * version 2.1 of the License, or (at your option) any later version. *
8 * *
9 * Gfxprim is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
12 * Lesser General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Lesser General Public *
15 * License along with gfxprim; if not, write to the Free Software *
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
17 * Boston, MA 02110-1301 USA *
18 * *
19 * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos *
20 * <jiri.bluebear.dluhos@gmail.com> *
21 * *
22 * Copyright (C) 2009-2011 Cyril Hrubis <metan@ucw.cz> *
23 * *
24 *****************************************************************************/
28 GP_Context filters.
32 #ifndef GP_FILTERS_H
33 #define GP_FILTERS_H
35 /* Filter per channel parameter passing interface */
36 #include "filters/GP_FilterParam.h"
38 /* Point filters, brightness, contrast ... */
39 #include "filters/GP_Point.h"
41 /* Addition, difference, min, max ... */
42 #include "filters/GP_Arithmetic.h"
44 /* Histograms, ... */
45 #include "filters/GP_Stats.h"
47 /* Image rotations (90 180 270 grads) and mirroring */
48 #include "filters/GP_Rotate.h"
50 /* Linear convolution Raw API */
51 #include "filters/GP_Linear.h"
53 /* Convolution filters */
54 #include "filters/GP_Convolution.h"
56 /* Image scaling (resampling) */
57 #include "filters/GP_Resize.h"
59 /* Bitmap dithering */
60 #include "filters/GP_Dither.h"
62 /* Laplace based filters */
63 #include "filters/GP_Laplace.h"
65 #endif /* GP_FILTERS_H */