diff options
author | Ian Romanick <[email protected]> | 2015-05-12 19:15:09 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2015-05-15 20:23:31 -0700 |
commit | f507d33d4fd0834529b77c2e24271904a14247ac (patch) | |
tree | 151e44a84559cde6501f361a91fd7a08d50966ca /src/mapi/glapi/gen/ARB_sync.xml | |
parent | 2b419e0db92248ca768d2d26aa2f8276c70356e2 (diff) |
glapi: Remove all offset tags from the XML
Changes generated by:
cd src/mapi/glapi/gen
for i in *.xml; do
cat $i |\
sed 's/[[:space:]]*offset="[^"]*">/>/' |\
sed 's/[[:space:]]*offset="[^"]*"[[:space:]]*$//' |\
sed 's/[[:space:]]*offset="[^"]*"[[:space:]]*/ /' > x
mv x $i
done
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen/ARB_sync.xml')
-rw-r--r-- | src/mapi/glapi/gen/ARB_sync.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mapi/glapi/gen/ARB_sync.xml b/src/mapi/glapi/gen/ARB_sync.xml index 58f1639c421..d8a1c34e0c8 100644 --- a/src/mapi/glapi/gen/ARB_sync.xml +++ b/src/mapi/glapi/gen/ARB_sync.xml @@ -39,40 +39,40 @@ --> - <function name="FenceSync" offset="assign" es2="3.0"> + <function name="FenceSync" es2="3.0"> <param name="condition" type="GLenum"/> <param name="flags" type="GLbitfield"/> <return type="GLsync"/> </function> - <function name="IsSync" offset="assign" es2="3.0"> + <function name="IsSync" es2="3.0"> <param name="sync" type="GLsync"/> <return type="GLboolean"/> </function> - <function name="DeleteSync" offset="assign" es2="3.0"> + <function name="DeleteSync" es2="3.0"> <param name="sync" type="GLsync"/> </function> - <function name="ClientWaitSync" offset="assign" es2="3.0"> + <function name="ClientWaitSync" es2="3.0"> <param name="sync" type="GLsync"/> <param name="flags" type="GLbitfield"/> <param name="timeout" type="GLuint64"/> <return type="GLenum"/> </function> - <function name="WaitSync" offset="assign" es2="3.0"> + <function name="WaitSync" es2="3.0"> <param name="sync" type="GLsync"/> <param name="flags" type="GLbitfield"/> <param name="timeout" type="GLuint64"/> </function> - <function name="GetInteger64v" offset="assign" es2="3.0"> + <function name="GetInteger64v" es2="3.0"> <param name="pname" type="GLenum"/> <param name="params" type="GLint64 *" output="true" variable_param="pname"/> </function> - <function name="GetSynciv" offset="assign" es2="3.0"> + <function name="GetSynciv" es2="3.0"> <param name="sync" type="GLsync"/> <param name="pname" type="GLenum"/> <param name="bufSize" type="GLsizei"/> |