diff options
author | Courtney Goeltzenleuchter <[email protected]> | 2013-11-13 13:25:32 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-01-20 11:32:00 -0800 |
commit | 6d9c0011a05a2137ca40fa9ed720520fcc29578f (patch) | |
tree | aee86ea936e3a75316155e8bc7315d3c5812c47b /src/mesa/main/get.h | |
parent | a4bc73f7ba397c03d0d7a796597bd0fea114df91 (diff) |
mesa: Add new get entrypoints for ARB_viewport_array
v2 (idr): Fix several "comparison between signed and unsigned integer
expressions" warnings.
Signed-off-by: Courtney Goeltzenleuchter <[email protected]>
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[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 0f72508a79e..ce97cc586d4 100644 --- a/src/mesa/main/get.h +++ b/src/mesa/main/get.h @@ -65,6 +65,12 @@ _mesa_GetInteger64i_v( GLenum pname, GLuint index, GLint64 *params ); extern void GLAPIENTRY _mesa_GetPointerv( GLenum pname, GLvoid **params ); +extern void GLAPIENTRY +_mesa_GetFloati_v(GLenum target, GLuint index, GLfloat *data); + +extern void GLAPIENTRY +_mesa_GetDoublei_v(GLenum target, GLuint index, GLdouble *data); + extern const GLubyte * GLAPIENTRY _mesa_GetString( GLenum name ); |