diff options
author | Emil Velikov <[email protected]> | 2018-12-10 17:54:23 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2019-01-24 18:13:25 +0000 |
commit | 5a81e8d40edd1dc678b27147234ce285c2a0a392 (patch) | |
tree | 4988f27f8c81ae3908a892f63c5f877ea30fdbbe /src/mesa/main/texgetimage.h | |
parent | 6148cce388f42739e06124b4c5c9d535e6fd1af8 (diff) |
Revert "mesa/main: remove ARB suffix from glGetnTexImage"
This reverts commit f1998e15ffccf260552bf559abe1a733a8ce990e.
This changes the ABI, such that glGetnTexImageARB entry-point from the
GLAPI gets removed. Thus accessing many functions by offset (as we do)
will result in getting the wrong one.
Follow-up work will swap the by-offset handling, but for now revert
this patch.
Acked-by: Erik Faye-Lund <[email protected]>
Diffstat (limited to 'src/mesa/main/texgetimage.h')
-rw-r--r-- | src/mesa/main/texgetimage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texgetimage.h b/src/mesa/main/texgetimage.h index 9a5874300e7..3928e7abb7b 100644 --- a/src/mesa/main/texgetimage.h +++ b/src/mesa/main/texgetimage.h @@ -56,8 +56,8 @@ extern void GLAPIENTRY _mesa_GetTexImage( GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels ); extern void GLAPIENTRY -_mesa_GetnTexImage(GLenum target, GLint level, GLenum format, - GLenum type, GLsizei bufSize, GLvoid *pixels); +_mesa_GetnTexImageARB( GLenum target, GLint level, GLenum format, + GLenum type, GLsizei bufSize, GLvoid *pixels ); extern void GLAPIENTRY _mesa_GetTextureImage(GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *pixels); |