diff options
author | Laura Ekstrand <[email protected]> | 2014-12-10 16:19:21 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | 2ce5db3930ca3441b5647b907531c24e058b45ff (patch) | |
tree | c8e256fc8fafcc324e98690a96416031453ffafd /src/mesa/main/texparam.h | |
parent | abc688e33a6a76223af63e5d34af87e3bbbd97cd (diff) |
main: Added entry point for glTextureParameterfv.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/texparam.h')
-rw-r--r-- | src/mesa/main/texparam.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.h b/src/mesa/main/texparam.h index a5f7c4dbb75..cf3efec88f6 100644 --- a/src/mesa/main/texparam.h +++ b/src/mesa/main/texparam.h @@ -39,6 +39,11 @@ _mesa_texture_parameterf(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum pname, GLfloat param, bool dsa); +extern void +_mesa_texture_parameterfv(struct gl_context *ctx, + struct gl_texture_object *texObj, + GLenum pname, const GLfloat *params, bool dsa); + /*@}*/ /** @@ -88,6 +93,8 @@ _mesa_TexParameterIiv(GLenum target, GLenum pname, const GLint *params); extern void GLAPIENTRY _mesa_TexParameterIuiv(GLenum target, GLenum pname, const GLuint *params); +extern void GLAPIENTRY +_mesa_TextureParameterfv(GLuint texture, GLenum pname, const GLfloat *params); extern void GLAPIENTRY _mesa_TextureParameterf(GLuint texture, GLenum pname, GLfloat param); |