summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2017-03-13 15:25:42 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2017-03-13 15:36:27 +0000
commit98f6dc3d75338b234c4f049eb2f29b6dffac109a (patch)
treed053c11969f06604e1c833b7a76a60c558384c33
parentd54d937c9d3c20a0d7f366a46292794bddba892e (diff)
Remove unneeded GL_GLEXT_PROTOTYPES define
The define itself is sort of a hack for cases where one wants to static link against extensions. Instead one should be calling {egl,glX}GetProcAddress as clearly documented. Since our code is sane enough to not depend on the static link, simply drop the quirky define. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--common.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/common.h b/common.h
index 2c27082..57f4610 100644
--- a/common.h
+++ b/common.h
@@ -24,7 +24,6 @@
#ifndef _COMMON_H
#define _COMMON_H
-#define GL_GLEXT_PROTOTYPES 1
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <EGL/egl.h>