OpenGL Renderer:

- Fix building on platforms that aren’t OS X. (Regression from r5450. Fixes bug #1561.)
This commit is contained in:
rogerman 2016-06-10 18:20:55 +00:00
parent 490e34f81e
commit 41d9061ce4
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <GL/gl.h>
#include <GL/glext.h>
#include <GL/glcorearb.h>
#define OGLEXT(procPtr, func) procPtr func = NULL;
@ -39,6 +40,7 @@
#define EXTERNOGLEXT(procPtr, func)
#else
#include <GL/gl.h>
#include <GL/glext.h>
#include <GL/glx.h>
#include "utils/glcorearb.h"