1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 09:05:17 +00:00
qb64/internal/c/parts/core/src.c
2018-01-09 22:38:07 +11:00

15 lines
304 B
C

#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
#include "src/freeglut.h"
#endif