From: José Fonseca Date: Sun, 24 Apr 2011 11:25:43 +0000 (+0100) Subject: comment about memcpy prototype X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=35f4578c6b8cb1d90a4f77e346b7ee26877efa49;p=apitrace comment about memcpy prototype --- diff --git a/glapi.py b/glapi.py index 3f2aebe..c1b4852 100644 --- a/glapi.py +++ b/glapi.py @@ -2304,4 +2304,7 @@ glapi.add_functions([ ]) +# memcpy's prototype. We don't really want to trace all memcpy calls -- just +# emit a few fake memcpy calls --, which is why the prototype is not together +# with the rest. memcpy = Function(Void, "memcpy", [(GLmap, "dest"), (Blob(Const(Void), "n"), "src"), (SizeT, "n")])