]> git.jsancho.org Git - c-irrlicht.git/blob - include/EMaterialFlags.h
C compatible types
[c-irrlicht.git] / include / EMaterialFlags.h
1 /* c-irrlicht --- C bindings for Irrlicht Engine
2
3    Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
4
5    This file is part of c-irrlicht.
6
7    c-irrlicht is free software; you can redistribute it and/or modify
8    it under the terms of the GNU Lesser General Public License as
9    published by the Free Software Foundation; either version 3 of the
10    License, or (at your option) any later version.
11
12    c-irrlicht is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with guile-irrlicht.  If not, see
19    <http://www.gnu.org/licenses/>.
20 */
21
22 #ifndef __C_E_MATERIAL_FLAGS_H_INCLUDED__
23 #define __C_E_MATERIAL_FLAGS_H_INCLUDED__
24
25 typedef enum
26   {
27    irr_video_EMF_WIREFRAME = 0x1,
28    irr_video_EMF_POINTCLOUD = 0x2,
29    irr_video_EMF_GOURAUD_SHADING = 0x4,
30    irr_video_EMF_LIGHTING = 0x8,
31    irr_video_EMF_ZBUFFER = 0x10,
32    irr_video_EMF_ZWRITE_ENABLE = 0x20,
33    irr_video_EMF_BACK_FACE_CULLING = 0x40,
34    irr_video_EMF_FRONT_FACE_CULLING = 0x80,
35    irr_video_EMF_BILINEAR_FILTER = 0x100,
36    irr_video_EMF_TRILINEAR_FILTER = 0x200,
37    irr_video_EMF_ANISOTROPIC_FILTER = 0x400,
38    irr_video_EMF_FOG_ENABLE = 0x800,
39    irr_video_EMF_NORMALIZE_NORMALS = 0x1000,
40    irr_video_EMF_TEXTURE_WRAP = 0x2000,
41    irr_video_EMF_ANTI_ALIASING = 0x4000,
42    irr_video_EMF_COLOR_MASK = 0x8000,
43    irr_video_EMF_COLOR_MATERIAL = 0x10000,
44    irr_video_EMF_USE_MIP_MAPS = 0x20000,
45    irr_video_EMF_BLEND_OPERATION = 0x40000,
46    irr_video_EMF_POLYGON_OFFSET = 0x80000
47   } irr_video_E_MATERIAL_FLAG;
48
49 #endif