blob: 60c1f74ac3307a8fb6c3739b01f8804e9d16c95e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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 <wingdi_types.h>
#include <GL/wglext.h>
|