X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=cgltrace.py;h=0e40663560ff720c40b9ac72b64c239d34260061;hb=43ac1bff7374a572d3bb0a8341ab3d167e3ac07d;hp=e2e98745fe4808b2fa309d6a447bb27d973c76f1;hpb=a0e612d13d479d1b0e65d11037060b473c9d722f;p=apitrace diff --git a/cgltrace.py b/cgltrace.py index e2e9874..0e40663 100644 --- a/cgltrace.py +++ b/cgltrace.py @@ -35,7 +35,7 @@ from gltrace import GlTracer class CglTracer(GlTracer): - def is_public_function(self, function): + def isFunctionPublic(self, function): # The symbols visible in libGL.dylib can vary, so expose them all return True @@ -55,8 +55,8 @@ if __name__ == '__main__': print api = API() - api.add_api(cglapi) - api.add_api(glapi) + api.addApi(cglapi) + api.addApi(glapi) tracer = CglTracer() tracer.trace_api(api)