Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/terrain/src/defs/glincl.h @ 8453

Last change on this file since 8453 was 8296, checked in by ponder, 18 years ago
  • volfog_effect.cc didn't compile on macosx, because there's no glX* stuff. Now macosx is handled specially
  • For some reason, PACKAGE_NAME, PACKAGE_VERSION and similar variables were not found. I added them to debug.h, but thats just temporary.
File size: 363 bytes
Line 
1/*!
2  \file glincl.h
3  \brief This file includes gl Headers.
4
5  no Class is defined here, but the opengl Headers
6*/
7
8#ifndef _GLINCL_H
9#define _GLINCL_H
10
11#ifndef __APPLE__
12#include <GL/glew.h>
13#include <GL/gl.h>
14#include <GL/glu.h>
15#else
16#include <GL/glew.h>
17#include <OpenGL/gl.h>
18#include <OpenGL/glu.h>
19#include <OpenGL/glext.h>
20#endif
21
22#endif /* _GLINCL_H */
Note: See TracBrowser for help on using the repository browser.