]> git.cworth.org Git - apitrace/commitdiff
comment about memcpy prototype
authorJosé Fonseca <jose.r.fonseca@gmail.com>
Sun, 24 Apr 2011 11:25:43 +0000 (12:25 +0100)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Sun, 24 Apr 2011 11:25:43 +0000 (12:25 +0100)
glapi.py

index 3f2aebec5e94fd3ee74eae4b083fe0759e31d486..c1b48522854b6001cea5498a72843aac46001156 100644 (file)
--- 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")])