11 lines
176 B
C
11 lines
176 B
C
#ifdef HAVE_FREEGLUT
|
|
#include <GL/freeglut.h>
|
|
#elif defined __APPLE__
|
|
#include <GLUT/glut.h>
|
|
#else
|
|
#include <GL/glut.h>
|
|
#endif
|
|
|
|
#ifndef GLAPIENTRY
|
|
#define GLAPIENTRY
|
|
#endif |