X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=dispatch%2Fglproc.py;h=ea1667af3ef9148ceca5c374bcf3a16ca32115a1;hb=9d9eb81d94075181c360d4712b9fd3baa58d5782;hp=488f91279da853bd3b4ce3ad45efbcf5733180bc;hpb=81301939f025407ceb284a9dcd5d5a1f05d27b8f;p=apitrace diff --git a/dispatch/glproc.py b/dispatch/glproc.py index 488f912..ea1667a 100644 --- a/dispatch/glproc.py +++ b/dispatch/glproc.py @@ -506,6 +506,30 @@ void * _getPrivateProcAddress(const char *procName); def isFunctionPublic(self, module, function): return function.name in public_symbols or function.name.startswith('CGL') + def failFunction(self, function): + # We fake this when they are not available + if function.name in ('glGetObjectLabel', 'glGetObjectPtrLabel'): + print r' if (length != 0) *length = 0;' + print r' if (label != 0 && bufSize > 0) *label = 0;' + return + if function.name in ('glGetDebugMessageLog', 'glGetDebugMessageLogARB'): + print r' if (sources != 0) *sources = 0;' + print r' if (types != 0) *types = 0;' + print r' if (ids != 0) *ids = 0;' + print r' if (severities != 0) *severities = 0;' + print r' if (lengths != 0) *lengths = 0;' + print r' if (messageLog != 0 && bufsize > 0) *messageLog = 0;' + return + if function.name in ('glGetDebugMessageLogAMD'): + print r' if (categories != 0) *categories = 0;' + print r' if (ids != 0) *ids = 0;' + print r' if (severities != 0) *severities = 0;' + print r' if (lengths != 0) *lengths = 0;' + print r' if (message != 0 && bufsize > 0) *message = 0;' + return + + Dispatcher.failFunction(self, function) + if __name__ == '__main__': print