summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2014-07-03 08:19:03 -0600
committerAndreas Boll <andreas.boll.dev@gmail.com>2014-07-05 10:17:05 +0200
commitb7723f05c91aa29f0d877701affdf8ce0af4d098 (patch)
tree53cf0fce92be725768a566c7dcf2f4c0c137cda2
parent94cece0a8226a3efe79ee97f63fe22485d0031ef (diff)
glxinfo: remove query of GL_MAX_VERTEX_ATTRIB_STRIDE
This is not part of the GL_ARB_vertex_attrib_binding extension. It's part of OpenGL 4.4. Fixes compilation failure if glext.h doesn't have the GL 4.4 #defines. Reviewed-by: Andreas Boll <andreas.boll.dev@gmail.com>
-rw-r--r--src/xdemos/glinfo_common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/xdemos/glinfo_common.c b/src/xdemos/glinfo_common.c
index 1326a86d..4360e531 100644
--- a/src/xdemos/glinfo_common.c
+++ b/src/xdemos/glinfo_common.c
@@ -563,7 +563,6 @@ print_limits(const char *extensions, const char *oglstring, int version,
#endif
#if defined (GL_ARB_vertex_attrib_binding)
{ 1, GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET, "GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET", "GL_ARB_vertex_attrib_binding" },
- { 1, GL_MAX_VERTEX_ATTRIB_STRIDE, "GL_MAX_VERTEX_ATTRIB_STRIDE", "GL_ARB_vertex_attrib_binding" },
{ 1, GL_MAX_VERTEX_ATTRIB_BINDINGS, "GL_MAX_VERTEX_ATTRIB_BINDINGS", "GL_ARB_vertex_attrib_binding" },
#endif
{ 0, (GLenum) 0, NULL, NULL }