diff options
author | Timothy Arceri <[email protected]> | 2017-06-26 10:49:17 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-06-27 08:11:02 +1000 |
commit | bc0af44a5ae9a6671cc6c2f5a380d86fd7babacb (patch) | |
tree | 5dd380863b409edf1eb31778435a5408e5626c0e /src/mapi/glapi | |
parent | 51f4ebdbdc8bed017ddbd85775766efe4bd80555 (diff) |
mesa: add KHR_no_error support for gl{Compressed}TexImage*D()
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mapi/glapi')
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 2cc66ac8b0f..550af08268e 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -2149,7 +2149,7 @@ <glx rop="108"/> </function> - <function name="TexImage1D"> + <function name="TexImage1D" no_error="true"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="internalformat" type="GLint"/> @@ -2161,7 +2161,7 @@ <glx rop="109" large="true"/> </function> - <function name="TexImage2D" es1="1.0" es2="2.0"> + <function name="TexImage2D" es1="1.0" es2="2.0" no_error="true"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="internalformat" type="GLint"/> @@ -4011,7 +4011,7 @@ <glx rop="4113"/> </function> - <function name="TexImage3D" es2="3.0"> + <function name="TexImage3D" es2="3.0" no_error="true"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="internalformat" type="GLint"/> @@ -4507,7 +4507,8 @@ <glx rop="229"/> </function> - <function name="CompressedTexImage3D" es2="3.0" marshal="sync"> + <function name="CompressedTexImage3D" es2="3.0" marshal="sync" + no_error="true"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="internalformat" type="GLenum"/> @@ -4520,7 +4521,8 @@ <glx rop="216" handcode="client"/> </function> - <function name="CompressedTexImage2D" es1="1.0" es2="2.0" marshal="sync"> + <function name="CompressedTexImage2D" es1="1.0" es2="2.0" marshal="sync" + no_error="true"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="internalformat" type="GLenum"/> @@ -4532,7 +4534,7 @@ <glx rop="215" handcode="client"/> </function> - <function name="CompressedTexImage1D" marshal="sync"> + <function name="CompressedTexImage1D" marshal="sync" no_error="true"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="internalformat" type="GLenum"/> |