X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=wrappers%2Fegltrace.py;h=2d9af1babfe231eb65f4ae61f56ec113cb622fba;hb=2cfa02c89ce8779e328aecdcc4eeecce6c9a2dbf;hp=8c4a46a0b9b3c5abde49ff91a936d4138f995285;hpb=d6aa74c803556e4eb82919aef6f0edb06a5811aa;p=apitrace diff --git a/wrappers/egltrace.py b/wrappers/egltrace.py index 8c4a46a..2d9af1b 100644 --- a/wrappers/egltrace.py +++ b/wrappers/egltrace.py @@ -96,18 +96,6 @@ class EglTracer(GlTracer): print ' _EGLImageKHR_free_image_info(info);' print ' }' - def emitFakeTexture2D(self): - function = glapi.getFunctionByName('glTexImage2D') - instances = function.argNames() - print ' unsigned _fake_call = trace::localWriter.beginEnter(&_%s_sig);' % (function.name,) - for arg in function.args: - assert not arg.output - self.serializeArg(function, arg) - print ' trace::localWriter.endEnter();' - print ' trace::localWriter.beginLeave(_fake_call);' - print ' trace::localWriter.endLeave();' - - if __name__ == '__main__': print '#include '