mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
20 lines
238 B
C
20 lines
238 B
C
|
|
#ifndef BGLBUILD_H_INCLUDED_
|
|
#define BGLBUILD_H_INCLUDED_
|
|
|
|
#ifdef USE_OPENGL
|
|
|
|
#if !defined GEKKO
|
|
# define USE_GLEXT
|
|
#endif
|
|
|
|
#if defined EDUKE32_OSX
|
|
# include <OpenGL/glu.h>
|
|
#else
|
|
# include <GL/glu.h>
|
|
#endif
|
|
|
|
#endif //USE_OPENGL
|
|
|
|
|
|
#endif
|