mapi/new: remove duplicate GLvoid/void substitution
[mesa.git] / src / mapi / new / genCommon.py
index f4eb1728e95270ef4f039e9cd840ee012a2c25e4..a9fdbcdc9eec7b5d710de4daab3b61ae57c71e8c 100644 (file)
@@ -226,7 +226,6 @@ def _fixupTypeName(typeName):
     # Remove the vendor suffixes from types that have a suffix-less version.
     rv = re.sub(r"\b(GLhalf|GLintptr|GLsizeiptr|GLint64|GLuint64)(?:ARB|EXT|NV|ATI)\b", r"\1", rv)
 
-    rv = re.sub(r"\bGLvoid\b", "void", rv)
     rv = re.sub(r"\bGLDEBUGPROCKHR\b", "GLDEBUGPROC", rv)
 
     # Clear out any leading and trailing whitespace.