1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 01:10:23 +00:00
QB64-PE/internal/c/parts/core/src.c
2022-05-06 13:20:30 -04:00

15 lines
325 B
C

#ifndef QB64_GLES
# include "glew/include/GL/glew.h"
#endif
#ifdef QB64_MACOSX
// 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
# define CORE_FREEGLUT
# include "src/freeglut.h"
#endif