]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/ufoaiplug/ufoai_filters.h
netradiant: strip 16-bit png to 8-bit, fix #153
[xonotic/netradiant.git] / contrib / ufoaiplug / ufoai_filters.h
1 /*
2    This file is part of GtkRadiant.
3
4    GtkRadiant is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8
9    GtkRadiant 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
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with GtkRadiant; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #if !defined( INCLUDED_FILTERS_H )
20 #define INCLUDED_FILTERS_H
21
22 void filter_level( int flag );
23 void filter_stepon( void );
24 void filter_actorclip( void );
25 void filter_weaponclip( void );
26 void filter_nodraw( void );
27
28 const int SURF_NODRAW = 0x80;
29
30 const int CONTENTS_LEVEL8 = 0x8000;
31 const int CONTENTS_LEVEL7 = 0x4000;
32 const int CONTENTS_LEVEL6 = 0x2000;
33 const int CONTENTS_LEVEL5 = 0x1000;
34 const int CONTENTS_LEVEL4 = 0x0800;
35 const int CONTENTS_LEVEL3 = 0x0400;
36 const int CONTENTS_LEVEL2 = 0x0200;
37 const int CONTENTS_LEVEL1 = 0x0100;
38 const int CONTENTS_ACTORCLIP = 0x10000;
39 const int CONTENTS_WEAPONCLIP = 0x2000000;
40 const int CONTENTS_STEPON = 0x40000000;
41
42 #endif