summaryrefslogtreecommitdiff
path: root/source/qgl_local.h
blob: f5dec75dfcaa87a0d5db6c7ac539d445f5ee6b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <GL/gl.h>
#include <GL/glext.h>
#elif (defined __unix__)
#include <GL/gl.h>
#else
#error Unknown Target OS
#endif

#ifndef APIENTRY
#define APIENTRY
#endif