From 34d6d381c56ca3925b9d6953cd567911d27bb61c Mon Sep 17 00:00:00 2001 From: nigels Date: Wed, 22 Sep 2010 19:45:36 +0000 Subject: [PATCH] Bug ID: 3072935 glGetPointerv is GL 1.2, not GL_EXT_vertex_array git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@623 783a27ee-832a-0410-bc00-9f386506c6dd --- auto/bin/update_ext.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/auto/bin/update_ext.sh b/auto/bin/update_ext.sh index 750055d..bbb6c5e 100755 --- a/auto/bin/update_ext.sh +++ b/auto/bin/update_ext.sh @@ -293,6 +293,12 @@ EOT grep -v "glGetPointerv" $1/GL_ARB_debug_output > tmp mv tmp $1/GL_ARB_debug_output +# Filter glGetPointerv from GL_EXT_vertex_array +# It's part of OpenGL 1.1, after all + + grep -v "glGetPointerv" $1/GL_EXT_vertex_array > tmp + mv tmp $1/GL_EXT_vertex_array + # clean up rm -f $1/*.bak