MTek-GDL
0.100.4-muffintrap
Loading...
Searching...
No Matches
include
mgdl
mgdl-opengl.h
1
#pragma once
2
3
// includes the OpenGL needed by platform
4
#ifdef GEKKO
5
#include <opengx.h>
6
#include <GL/glu.h>
7
#else
8
// Needed on non-Wii platforms to silence warnings about old OpenGL
9
#define GL_SILENCE_DEPRECATION 1
10
11
#ifdef __APPLE__
12
#include <OpenGL/gl.h>
13
#include <OpenGL/glu.h>
14
#include <GLUT/glut.h>
15
#else
16
#include <GL/gl.h>
17
#include <GL/glu.h>
18
#include <GL/glut.h>
19
#endif
20
#endif
21
Generated by
1.9.8