blob: 9c6120411b5a5d411016ed7d4f4f1a7ae92a0ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define GLAPI
// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
// "glext.h" are parsed.
#define GL_GLEXT_PROTOTYPES
#include <GL/gl.h>
// Bring in the wgl extensions
#define WGL_WGLEXT_PROTOTYPES
#define SKIP_WGL_HANDLE_DEFINITIONS
#include <windows.h>
#include <GL/wglext.h>
|