diff options
author | Matt Turner <[email protected]> | 2012-11-20 13:01:04 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-01-10 10:57:51 -0800 |
commit | 0ae81b8422e272e44ef40a09dc443c9014adbd0b (patch) | |
tree | 162706c2f2fa3724dec9c7a197220dcf46157345 /src/mesa/main/get.h | |
parent | 1a3ffbf3789777a174158ba75472b07a6270ba9d (diff) |
mesa: Rename and wire-up GetInteger64i_v
The function was named badly and wasn't in the dispatch table,
making it hard to find.
Fixes transform_feedback2_states and gets a few other transform
feedback tests closer to working in es3conform.
Reviewed-by Anuj Phogat <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/get.h')
-rw-r--r-- | src/mesa/main/get.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get.h b/src/mesa/main/get.h index 4daa1aec117..6b0158f37e4 100644 --- a/src/mesa/main/get.h +++ b/src/mesa/main/get.h @@ -60,7 +60,7 @@ extern void GLAPIENTRY _mesa_GetIntegeri_v( GLenum pname, GLuint index, GLint *params ); extern void GLAPIENTRY -_mesa_GetInteger64Indexedv( GLenum pname, GLuint index, GLint64 *params ); +_mesa_GetInteger64i_v( GLenum pname, GLuint index, GLint64 *params ); extern void GLAPIENTRY _mesa_GetPointerv( GLenum pname, GLvoid **params ); |