projects
/
tools
/
apitrace.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
867b1b7
)
comment about memcpy prototype
author
José Fonseca
<jose.r.fonseca@gmail.com>
Sun, 24 Apr 2011 11:25:43 +0000
(12:25 +0100)
committer
José Fonseca
<jose.r.fonseca@gmail.com>
Sun, 24 Apr 2011 11:25:43 +0000
(12:25 +0100)
glapi.py
patch
|
blob
|
history
diff --git
a/glapi.py
b/glapi.py
index
3f2aebe
..
c1b4852
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")])