summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texparam.h
diff options
context:
space:
mode:
authorLaura Ekstrand <laura@jlekstrand.net>2014-12-10 15:19:59 -0800
committerLaura Ekstrand <laura@jlekstrand.net>2015-01-08 11:37:29 -0800
commit86bb3be3193512c12c284bb2cc609fa78d27fc55 (patch)
treeab1f188fbf1cc6b7c786c371a5477bff9543f96a /src/mesa/main/texparam.h
parentbf5c588cdea616e0fb57f904c38bc0eb5eb2b962 (diff)
downloadexternal_mesa3d-86bb3be3193512c12c284bb2cc609fa78d27fc55.zip
external_mesa3d-86bb3be3193512c12c284bb2cc609fa78d27fc55.tar.gz
external_mesa3d-86bb3be3193512c12c284bb2cc609fa78d27fc55.tar.bz2
main: Added entry points for glGetTextureLevelParameteriv, fv.
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/mesa/main/texparam.h')
-rw-r--r--src/mesa/main/texparam.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.h b/src/mesa/main/texparam.h
index 8911219..961081d 100644
--- a/src/mesa/main/texparam.h
+++ b/src/mesa/main/texparam.h
@@ -82,6 +82,15 @@ _mesa_GetTexLevelParameteriv( GLenum target, GLint level,
GLenum pname, GLint *params );
extern void GLAPIENTRY
+_mesa_GetTextureLevelParameterfv(GLuint texture, GLint level,
+ GLenum pname, GLfloat *params);
+
+extern void GLAPIENTRY
+_mesa_GetTextureLevelParameteriv(GLuint texture, GLint level,
+ GLenum pname, GLint *params);
+
+
+extern void GLAPIENTRY
_mesa_GetTexParameterfv( GLenum target, GLenum pname, GLfloat *params );
extern void GLAPIENTRY