diff options
author | José Fonseca <jfonseca@vmware.com> | 2014-02-04 19:01:22 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2014-02-04 19:01:22 +0000 |
commit | 7ff82416a09d19922c18d211b0223399db1aeda3 (patch) | |
tree | 6badacb7043cea5ce50af994172fc8f59c251c25 /dispatch | |
parent | fd67604d5932cce3617ff7ce725a0a686d129905 (diff) |
gltrace: Fake GL_EXT_debug_marker/label too.
Diffstat (limited to 'dispatch')
-rw-r--r-- | dispatch/glproc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch/glproc.py b/dispatch/glproc.py index ea1667af..5b6f707c 100644 --- a/dispatch/glproc.py +++ b/dispatch/glproc.py @@ -508,7 +508,7 @@ void * _getPrivateProcAddress(const char *procName); def failFunction(self, function): # We fake this when they are not available - if function.name in ('glGetObjectLabel', 'glGetObjectPtrLabel'): + if function.name in ('glGetObjectLabel', 'glGetObjectPtrLabel', 'glGetObjectLabelEXT'): print r' if (length != 0) *length = 0;' print r' if (label != 0 && bufSize > 0) *label = 0;' return |