diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-06 21:58:29 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 09:09:19 +0200 |
commit | f075c2bc0b249efe59a818c89de20de81279e3d9 (patch) | |
tree | d8dcdaa154c3af4e82aa94125307f266490d3b96 /src/mapi/glapi/gen | |
parent | e2524a21cb7846c36d2b01ed402f2de428654d52 (diff) |
mesa: add KHR_no_error support for glScissor*()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen')
-rw-r--r-- | src/mapi/glapi/gen/ARB_viewport_array.xml | 6 | ||||
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mapi/glapi/gen/ARB_viewport_array.xml b/src/mapi/glapi/gen/ARB_viewport_array.xml index be67912884e..3e9c65549ef 100644 --- a/src/mapi/glapi/gen/ARB_viewport_array.xml +++ b/src/mapi/glapi/gen/ARB_viewport_array.xml @@ -45,19 +45,19 @@ <param name="index" type="GLuint"/> <param name="v" type="const GLfloat *" count="4"/> </function> - <function name="ScissorArrayv"> + <function name="ScissorArrayv" no_error="true"> <param name="first" type="GLuint"/> <param name="count" type="GLsizei"/> <param name="v" type="const int *" count="count" count_scale="4"/> </function> - <function name="ScissorIndexed"> + <function name="ScissorIndexed" no_error="true"> <param name="index" type="GLuint"/> <param name="left" type="GLint"/> <param name="bottom" type="GLint"/> <param name="width" type="GLsizei"/> <param name="height" type="GLsizei"/> </function> - <function name="ScissorIndexedv"> + <function name="ScissorIndexedv" no_error="true"> <param name="index" type="GLuint"/> <param name="v" type="const GLint *" count="4"/> </function> diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 8f93318b95d..df999248c8e 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -2108,7 +2108,7 @@ <glx rop="102"/> </function> - <function name="Scissor" es1="1.0" es2="2.0"> + <function name="Scissor" es1="1.0" es2="2.0" no_error="true"> <param name="x" type="GLint"/> <param name="y" type="GLint"/> <param name="width" type="GLsizei"/> |