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_invalidate_subdata.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_invalidate_subdata.xml')
-rw-r--r-- | src/mapi/glapi/gen/ARB_invalidate_subdata.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mapi/glapi/gen/ARB_invalidate_subdata.xml b/src/mapi/glapi/gen/ARB_invalidate_subdata.xml index 31b515cdb85..052816ad7e0 100644 --- a/src/mapi/glapi/gen/ARB_invalidate_subdata.xml +++ b/src/mapi/glapi/gen/ARB_invalidate_subdata.xml @@ -3,7 +3,7 @@ <OpenGLAPI> <category name="GL_ARB_invalidate_subdata" number="666"> - <function name="InvalidateTexSubImage" offset="assign"> + <function name="InvalidateTexSubImage"> <param name="texture" type="GLuint"/> <param name="level" type="GLint"/> <param name="xoffset" type="GLint"/> @@ -14,22 +14,22 @@ <param name="depth" type="GLsizei"/> </function> - <function name="InvalidateTexImage" offset="assign"> + <function name="InvalidateTexImage"> <param name="texture" type="GLuint"/> <param name="level" type="GLint"/> </function> - <function name="InvalidateBufferSubData" offset="assign"> + <function name="InvalidateBufferSubData"> <param name="buffer" type="GLuint"/> <param name="offset" type="GLintptr"/> <param name="length" type="GLsizeiptr"/> </function> - <function name="InvalidateBufferData" offset="assign"> + <function name="InvalidateBufferData"> <param name="buffer" type="GLuint"/> </function> - <function name="InvalidateSubFramebuffer" offset="assign" es2="3.0"> + <function name="InvalidateSubFramebuffer" es2="3.0"> <param name="target" type="GLenum"/> <param name="numAttachments" type="GLsizei" counter="true"/> <param name="attachments" type="const GLenum *" count="numAttachments"/> @@ -39,7 +39,7 @@ <param name="height" type="GLsizei"/> </function> - <function name="InvalidateFramebuffer" offset="assign" es2="3.0"> + <function name="InvalidateFramebuffer" es2="3.0"> <param name="target" type="GLenum"/> <param name="numAttachments" type="GLsizei" counter="true"/> <param name="attachments" type="const GLenum *" count="numAttachments"/> |