summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texparam.h
diff options
context:
space:
mode:
authorLaura Ekstrand <laura@jlekstrand.net>2014-12-10 15:35:38 -0800
committerLaura Ekstrand <laura@jlekstrand.net>2015-01-08 11:37:29 -0800
commitc2c50778648e8d3ae13c6233ed3b7149327a2b1f (patch)
treea8a56e40ad3054ee64ec423ffcef43561f794070 /src/mesa/main/texparam.h
parent89912d04a10d6d70c3f9791beecace76c6c550a0 (diff)
downloadexternal_mesa3d-c2c50778648e8d3ae13c6233ed3b7149327a2b1f.zip
external_mesa3d-c2c50778648e8d3ae13c6233ed3b7149327a2b1f.tar.gz
external_mesa3d-c2c50778648e8d3ae13c6233ed3b7149327a2b1f.tar.bz2
main: Added entry points for glGetTextureParameteriv, Iiv, and Iuiv.
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/mesa/main/texparam.h')
-rw-r--r--src/mesa/main/texparam.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.h b/src/mesa/main/texparam.h
index 11cbf34..96defbe 100644
--- a/src/mesa/main/texparam.h
+++ b/src/mesa/main/texparam.h
@@ -107,6 +107,16 @@ extern void GLAPIENTRY
_mesa_GetTextureParameterfv(GLuint texture, GLenum pname, GLfloat *params);
extern void GLAPIENTRY
+_mesa_GetTextureParameteriv(GLuint texture, GLenum pname, GLint *params);
+
+extern void GLAPIENTRY
+_mesa_GetTextureParameterIiv(GLuint texture, GLenum pname, GLint *params);
+
+extern void GLAPIENTRY
+_mesa_GetTextureParameterIuiv(GLuint texture, GLenum pname, GLuint *params);
+
+
+extern void GLAPIENTRY
_mesa_TexParameterfv( GLenum target, GLenum pname, const GLfloat *params );
extern void GLAPIENTRY