1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-04 11:10:15 +00:00
qb64/internal/c/parts/core/src.c

15 lines
304 B
C
Raw Normal View History

#ifndef QB64_GLES
#include "glew/include/GL/glew.h"
#endif
#ifdef QB64_MACOSX
//note: MacOSX uses Apple's GLUT not FreeGLUT
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <OpenGL/glext.h>
#include <GLUT/glut.h>
#else
#define CORE_FREEGLUT
2018-01-09 11:38:07 +00:00
#include "src/freeglut.h"
#endif