2023-11-01 10:10:05 -05:00
|
|
|
#ifndef GLUT_WRAP_H
|
|
|
|
#define GLUT_WRAP_H
|
|
|
|
|
|
|
|
#ifdef HAVE_FREEGLUT
|
2023-11-01 10:15:55 -05:00
|
|
|
#include <GL/freeglut.h>
|
2023-11-01 10:10:05 -05:00
|
|
|
#elif defined __APPLE__
|
2023-11-01 10:15:55 -05:00
|
|
|
#include <GLUT/glut.h>
|
2023-11-01 10:10:05 -05:00
|
|
|
#else
|
2023-11-01 10:15:55 -05:00
|
|
|
#include <GL/glut.h>
|
2023-11-01 10:10:05 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GLAPIENTRY
|
2023-11-01 10:15:55 -05:00
|
|
|
#define GLAPIENTRY
|
2023-11-01 10:10:05 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ! GLUT_WRAP_H */
|