aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/include/ECullingTypes.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/include/ECullingTypes.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to '')
-rw-r--r--libraries/irrlicht-1.8/include/ECullingTypes.h82
1 files changed, 41 insertions, 41 deletions
diff --git a/libraries/irrlicht-1.8/include/ECullingTypes.h b/libraries/irrlicht-1.8/include/ECullingTypes.h
index 4a562a4..7178c05 100644
--- a/libraries/irrlicht-1.8/include/ECullingTypes.h
+++ b/libraries/irrlicht-1.8/include/ECullingTypes.h
@@ -1,41 +1,41 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __E_CULLING_TYPES_H_INCLUDED__ 5#ifndef __E_CULLING_TYPES_H_INCLUDED__
6#define __E_CULLING_TYPES_H_INCLUDED__ 6#define __E_CULLING_TYPES_H_INCLUDED__
7 7
8#include "irrTypes.h" 8#include "irrTypes.h"
9 9
10namespace irr 10namespace irr
11{ 11{
12namespace scene 12namespace scene
13{ 13{
14 14
15 //! An enumeration for all types of automatic culling for built-in scene nodes 15 //! An enumeration for all types of automatic culling for built-in scene nodes
16 enum E_CULLING_TYPE 16 enum E_CULLING_TYPE
17 { 17 {
18 EAC_OFF = 0, 18 EAC_OFF = 0,
19 EAC_BOX = 1, 19 EAC_BOX = 1,
20 EAC_FRUSTUM_BOX = 2, 20 EAC_FRUSTUM_BOX = 2,
21 EAC_FRUSTUM_SPHERE = 4, 21 EAC_FRUSTUM_SPHERE = 4,
22 EAC_OCC_QUERY = 8 22 EAC_OCC_QUERY = 8
23 }; 23 };
24 24
25 //! Names for culling type 25 //! Names for culling type
26 const c8* const AutomaticCullingNames[] = 26 const c8* const AutomaticCullingNames[] =
27 { 27 {
28 "false", 28 "false",
29 "box", // camera box against node box 29 "box", // camera box against node box
30 "frustum_box", // camera frustum against node box 30 "frustum_box", // camera frustum against node box
31 "frustum_sphere", // camera frustum against node sphere 31 "frustum_sphere", // camera frustum against node sphere
32 "occ_query", // occlusion query 32 "occ_query", // occlusion query
33 0 33 0
34 }; 34 };
35 35
36} // end namespace scene 36} // end namespace scene
37} // end namespace irr 37} // end namespace irr
38 38
39 39
40#endif // __E_CULLING_TYPES_H_INCLUDED__ 40#endif // __E_CULLING_TYPES_H_INCLUDED__
41 41