summaryrefslogtreecommitdiffstats
path: root/src/mapi/new/genCommon.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapi/new/genCommon.py')
-rw-r--r--src/mapi/new/genCommon.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mapi/new/genCommon.py b/src/mapi/new/genCommon.py
index bfcf6ed3eea..f4eb1728e95 100644
--- a/src/mapi/new/genCommon.py
+++ b/src/mapi/new/genCommon.py
@@ -227,6 +227,7 @@ def _fixupTypeName(typeName):
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.
rv = rv.strip()