diff options
author | Erik Faye-Lund <[email protected]> | 2018-11-21 20:09:46 +0100 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2018-11-26 12:29:54 +0100 |
commit | f1998e15ffccf260552bf559abe1a733a8ce990e (patch) | |
tree | 8af42f101cb523be000c7bfe2ef6925270be8358 /src/mapi | |
parent | f5d053702fa976a3112d9c6a2425430365db40f8 (diff) |
mesa/main: remove ARB suffix from glGetnTexImage
This function has been core since OpenGL 4.3, so naming the
implementation and reporting erros using an ARB-suffix can be
confusing.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Juan A. Suarez <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_robustness.xml | 2 | ||||
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/ARB_robustness.xml b/src/mapi/glapi/gen/ARB_robustness.xml index 1f6ac4696b6..47c417390df 100644 --- a/src/mapi/glapi/gen/ARB_robustness.xml +++ b/src/mapi/glapi/gen/ARB_robustness.xml @@ -73,7 +73,7 @@ <param name="pattern" type="GLubyte *" output="true"/> </function> - <function name="GetnTexImageARB"> + <function name="GetnTexImageARB" alias="GetnTexImage"> <param name="target" type="GLenum"/> <param name="level" type="GLint"/> <param name="format" type="GLenum"/> diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 929e5f6b024..f4d0808f13b 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -2817,6 +2817,15 @@ <glx sop="135" dimensions_in_reply="true"/> </function> + <function name="GetnTexImage"> + <param name="target" type="GLenum"/> + <param name="level" type="GLint"/> + <param name="format" type="GLenum"/> + <param name="type" type="GLenum"/> + <param name="bufSize" type="GLsizei"/> + <param name="img" type="GLvoid *" output="true"/> + </function> + <function name="GetTexParameterfv" es1="1.1" es2="2.0"> <param name="target" type="GLenum"/> <param name="pname" type="GLenum"/> |