diff options
author | Andres Rodriguez <[email protected]> | 2017-07-12 18:45:06 -0400 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-08-06 12:42:06 +1000 |
commit | 322ee1b3636a38c22bc65009f13667a9d5f438cf (patch) | |
tree | 5924dfb4dc6979c96f9a138093bffede3dda61b8 /src/mesa/main/get.h | |
parent | 293b3e0a3f73ef85b446259dc9422932e0b8ff49 (diff) |
mapi: add EXT_external_objects and EXT_external_objects_fd
Includes implementation stubs.
Signed-off-by: Andres Rodriguez <[email protected]>
Acked-by: Timothy Arceri <[email protected]>
Acked-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/main/get.h')
-rw-r--r-- | src/mesa/main/get.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/get.h b/src/mesa/main/get.h index ce97cc586d4..34cb9381fed 100644 --- a/src/mesa/main/get.h +++ b/src/mesa/main/get.h @@ -54,6 +54,9 @@ extern void GLAPIENTRY _mesa_GetFixedv(GLenum pname, GLfixed *params); extern void GLAPIENTRY +_mesa_GetUnsignedBytevEXT(GLenum pname, GLubyte *data); + +extern void GLAPIENTRY _mesa_GetBooleani_v( GLenum pname, GLuint index, GLboolean *params ); extern void GLAPIENTRY @@ -71,6 +74,9 @@ _mesa_GetFloati_v(GLenum target, GLuint index, GLfloat *data); extern void GLAPIENTRY _mesa_GetDoublei_v(GLenum target, GLuint index, GLdouble *data); +extern void GLAPIENTRY +_mesa_GetUnsignedBytei_vEXT(GLenum target, GLuint index, GLubyte *data); + extern const GLubyte * GLAPIENTRY _mesa_GetString( GLenum name ); |