1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 03:55:52 +00:00
QB64-PE/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