diff options
author | Laura Ekstrand <[email protected]> | 2014-12-10 16:33:18 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | abc688e33a6a76223af63e5d34af87e3bbbd97cd (patch) | |
tree | 08c6340fc94813fbd649a797b5faf1242597d91c /src/mesa/main/texparam.h | |
parent | 5ad5393f3ba6d34a2fd3e0bf0cb50139c9817175 (diff) |
main: Added entry point for glTextureParameterf.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/texparam.h')
-rw-r--r-- | src/mesa/main/texparam.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.h b/src/mesa/main/texparam.h index 557a7bcb4b9..a5f7c4dbb75 100644 --- a/src/mesa/main/texparam.h +++ b/src/mesa/main/texparam.h @@ -29,6 +29,23 @@ #include "main/glheader.h" +/** + * \name Internal functions + */ +/*@{*/ + +extern void +_mesa_texture_parameterf(struct gl_context *ctx, + struct gl_texture_object *texObj, + GLenum pname, GLfloat param, bool dsa); + +/*@}*/ + +/** + * \name API functions + */ +/*@{*/ + extern void GLAPIENTRY _mesa_GetTexLevelParameterfv( GLenum target, GLint level, @@ -72,4 +89,7 @@ extern void GLAPIENTRY _mesa_TexParameterIuiv(GLenum target, GLenum pname, const GLuint *params); +extern void GLAPIENTRY +_mesa_TextureParameterf(GLuint texture, GLenum pname, GLfloat param); + #endif /* TEXPARAM_H */ |