Changeset 8296 in orxonox.OLD for branches/terrain/src
- Timestamp:
- Jun 9, 2006, 1:04:56 AM (19 years ago)
- Location:
- branches/terrain/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/defs/debug.h
r8282 r8296 111 111 #define PRINTFORX_VDEBUG PRINTF5 112 112 113 #ifndef ORX_DATADIR 114 #define ORX_DATADIR "/usr/share" 115 #endif 116 #ifndef DEBUG_LEVEL 117 #define DEBUG_LEVEL 2 118 #endif 113 119 #if DEBUG_LEVEL <= 3 114 120 #define PRINTF(x) PRINT(x) -
branches/terrain/src/defs/glincl.h
r5279 r8296 17 17 #include <OpenGL/gl.h> 18 18 #include <OpenGL/glu.h> 19 #include <OpenGL/glext.h> 19 20 #endif 20 21 -
branches/terrain/src/lib/graphics/effects/volfog_effect.cc
r7810 r8296 23 23 #include "glincl.h" 24 24 //#include "shell_command.h" 25 26 25 #define GLX_GLXEXT_PROTOTYPES 27 #include <GL/glx.h> 28 // #include <GL/glut.h> 29 30 //#include <GL/glext.h> //OpenGL Extensions 31 //#include <GL/glxext.h> // GLX Extensions 32 26 27 //#include <OpenGL/glext.h> //OpenGL Extensions 28 //#include <OpenGL/glxext.h> // GLX Extensions 29 #ifndef __APPLE__ 33 30 #ifndef GL_EXT_fog_coord 34 31 #define GL_EXT_fog_coord 1 … … 45 42 PFNGLFOGCOORDDVEXTPROC glFogCoorddvEXT = 0; 46 43 PFNGLFOGCOORDPOINTEREXTPROC glFogCoordPointerEXT = 0; 47 44 #endif 48 45 49 46 using namespace std; … … 93 90 float fogColor[4] = {0.6f,0.58f,0.79f,0.0f}; 94 91 95 92 #ifndef __APPLE__ 96 93 glFogCoordfEXT = (PFNGLFOGCOORDFEXTPROC)glXGetProcAddressARB((const GLubyte*)"glFogCoordfEXT"); 97 94 glFogCoordfvEXT = (PFNGLFOGCOORDFVEXTPROC)glXGetProcAddressARB((const GLubyte*)"glFogCoordfvEXT"); … … 99 96 glFogCoorddvEXT = (PFNGLFOGCOORDDVEXTPROC)glXGetProcAddressARB((const GLubyte*)"glFogCoorddvEXT"); 100 97 glFogCoordPointerEXT = (PFNGLFOGCOORDPOINTEREXTPROC)glXGetProcAddressARB((const GLubyte*)"glFogCoordPointerEXT"); 101 98 #endif 102 99 // set the fog attributes 103 100 glFogf (GL_FOG_START, fogStart); -
branches/terrain/src/lib/util/threading.h
r7847 r8296 14 14 #include <SDL/SDL_thread.h> 15 15 #endif 16 16 #include <string> 17 17 namespace OrxThread 18 18 { … … 31 31 void start(); 32 32 void terminate(); 33 34 35 33 private: 36 34 SDL_Thread* thread; -
branches/terrain/src/orxonox.cc
r8145 r8296 27 27 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ORXONOX 28 28 #include "orxonox.h" 29 29 #ifndef PACKAGE_NAME 30 #define PACKAGE_NAME "orxonox" 31 #endif 32 #ifndef PACKAGE_VERSION 33 #define PACKAGE_VERSION "00" 34 #endif 30 35 #include "globals.h" 31 36
Note: See TracChangeset
for help on using the changeset viewer.