X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=cgltrace.py;h=0e40663560ff720c40b9ac72b64c239d34260061;hb=54f304ad1c3ec54649f83ddf769746d433cd612d;hp=e2e98745fe4808b2fa309d6a447bb27d973c76f1;hpb=34c7d426901edbb2df59f92760ef382d4847fe3c;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)