1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-09 20:05:12 +00:00
QB64-PE/internal/c/parts/core/src.c

15 lines
325 B
C
Raw Normal View History

#ifndef QB64_GLES
2022-05-06 04:02:21 +00:00
# include "glew/include/GL/glew.h"
#endif
#ifdef QB64_MACOSX
2022-05-06 04:02:21 +00:00
// note: MacOSX uses Apple's GLUT not FreeGLUT
# include <GLUT/glut.h>
# include <OpenGL/gl.h>
# include <OpenGL/glext.h>
# include <OpenGL/glu.h>
#else
2022-05-06 04:02:21 +00:00
# define CORE_FREEGLUT
# include "src/freeglut.h"
#endif