diff options
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 557a7bc..a5f7c4d 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 */ |