Merge https://github.com/nigels-com/glew.git into master HEAD at Sun Jun 30 14:31:55 GMT 2019

This commit is contained in:
Gyusun Yeom 2019-06-30 14:31:54 +00:00
commit ff01f1db86
3 changed files with 13 additions and 4 deletions

View File

@ -27,7 +27,11 @@
#include <KHR/khrplatform.h>
#include <EGL/eglplatform.h>
#include <GL/glew.h>
#ifndef GLEW_INCLUDE
# include <GL/glew.h>
#else
# include GLEW_INCLUDE
#endif
#ifdef __cplusplus
extern "C" {

View File

@ -1,7 +1,7 @@
#ifndef GLEW_INCLUDE
#include <GL/glew.h>
# include <GL/glew.h>
#else
#include GLEW_INCLUDE
# include GLEW_INCLUDE
#endif
#if defined(GLEW_OSMESA)

View File

@ -19,7 +19,12 @@
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xmd.h>
#include <GL/glew.h>
#ifndef GLEW_INCLUDE
# include <GL/glew.h>
#else
# include GLEW_INCLUDE
#endif
#ifdef __cplusplus
extern "C" {