annotate src/fblur.h @ 12:2656099aff12
added copyright notices and license
author |
John Tsiombikas <nuclear@member.fsf.org> |
date |
Fri, 18 Jul 2014 07:04:21 +0300 |
parents |
c3b48cb2797f |
children |
|
rev |
line source |
nuclear@12
|
1 /*
|
nuclear@12
|
2 eqemu - electronic queue system emulator
|
nuclear@12
|
3 Copyright (C) 2014 John Tsiombikas <nuclear@member.fsf.org>,
|
nuclear@12
|
4 Eleni-Maria Stea <eleni@mutantstargoat.com>
|
nuclear@12
|
5
|
nuclear@12
|
6 This program is free software: you can redistribute it and/or modify
|
nuclear@12
|
7 it under the terms of the GNU General Public License as published by
|
nuclear@12
|
8 the Free Software Foundation, either version 3 of the License, or
|
nuclear@12
|
9 (at your option) any later version.
|
nuclear@12
|
10
|
nuclear@12
|
11 This program is distributed in the hope that it will be useful,
|
nuclear@12
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
nuclear@12
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
nuclear@12
|
14 GNU General Public License for more details.
|
nuclear@12
|
15
|
nuclear@12
|
16 You should have received a copy of the GNU General Public License
|
nuclear@12
|
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
|
nuclear@12
|
18 */
|
nuclear@8
|
19 #ifndef FBLUR_H_
|
nuclear@8
|
20 #define FBLUR_H_
|
nuclear@8
|
21
|
nuclear@8
|
22 #include <inttypes.h>
|
nuclear@8
|
23
|
nuclear@8
|
24 enum {
|
nuclear@8
|
25 BLUR_BOTH, /* blur in X and Y */
|
nuclear@8
|
26 BLUR_HORIZ, /* blur in X */
|
nuclear@8
|
27 BLUR_VERT /* blur in Y */
|
nuclear@8
|
28 };
|
nuclear@8
|
29
|
nuclear@8
|
30 void fast_blur(int dir, int amount, uint32_t *buf, int x, int y);
|
nuclear@8
|
31
|
nuclear@8
|
32 #endif /* FBLUR_H_ */
|