From: José Fonseca Date: Mon, 9 May 2011 10:33:47 +0000 (+0100) Subject: Fix programObj type. X-Git-Tag: 2.0_alpha^2~938^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a84b684f0c5c1aeff57dff7bc355fc14115d11b;p=tools%2Fapitrace.git Fix programObj type. --- diff --git a/glretrace.py b/glretrace.py index d306754..e1bd4a5 100644 --- a/glretrace.py +++ b/glretrace.py @@ -174,7 +174,7 @@ class GlRetracer(Retracer): if arg.type is glapi.GLlocationARB \ and 'programObj' not in [arg.name for arg in function.args]: - print ' GLint programObj = glGetHandleARB(GL_PROGRAM_OBJECT_ARB);' + print ' GLhandleARB programObj = glGetHandleARB(GL_PROGRAM_OBJECT_ARB);' Retracer.extract_arg(self, function, arg, arg_type, lvalue, rvalue)