Filter out GL_FLOAT and GL_UNSIGNED_INT from GL_AMD_performance_monitor extension.

This commit is contained in:
Nigel Stewart 2012-05-24 22:13:59 -05:00
parent 65ff20ef58
commit 6e29c50eac
1 changed files with 6 additions and 0 deletions

View File

@ -367,6 +367,12 @@ EOT
void glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
EOT
# Filter out GL_UNSIGNED_INT and GL_FLOAT from GL_AMD_performance_monitor
grep -v 'GL_UNSIGNED_INT ' $1/GL_AMD_performance_monitor > tmp
mv tmp $1/GL_AMD_performance_monitor
grep -v 'GL_FLOAT ' $1/GL_AMD_performance_monitor > tmp
mv tmp $1/GL_AMD_performance_monitor
# clean up
rm -f $1/*.bak