summaryrefslogtreecommitdiff
path: root/glapi.py
diff options
context:
space:
mode:
authorJosé Fonseca <jose.r.fonseca@gmail.com>2011-04-24 12:25:43 +0100
committerJosé Fonseca <jose.r.fonseca@gmail.com>2011-04-24 12:25:43 +0100
commit35f4578c6b8cb1d90a4f77e346b7ee26877efa49 (patch)
tree65bfdf080bfc0cd3a5ae12d57598b5d04cc63a85 /glapi.py
parent867b1b7934b127b3f0f8b195b1a97408ad6e9fce (diff)
comment about memcpy prototype
Diffstat (limited to 'glapi.py')
-rw-r--r--glapi.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/glapi.py b/glapi.py
index 3f2aebec..c1b48522 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")])