trans-glxgears-fork/glut_wrap.h

11 lines
176 B
C
Raw Normal View History

2023-11-01 10:10:05 -05:00
#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:35:45 -05:00
#endif