summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texparam.h
diff options
context:
space:
mode:
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 cf3efec88f6..98b9068ae72 100644
--- a/src/mesa/main/texparam.h
+++ b/src/mesa/main/texparam.h
@@ -44,6 +44,12 @@ _mesa_texture_parameterfv(struct gl_context *ctx,
struct gl_texture_object *texObj,
GLenum pname, const GLfloat *params, bool dsa);
+
+extern void
+_mesa_texture_parameteri(struct gl_context *ctx,
+ struct gl_texture_object *texObj,
+ GLenum pname, GLint param, bool dsa);
+
/*@}*/
/**
@@ -99,4 +105,7 @@ _mesa_TextureParameterfv(GLuint texture, GLenum pname, const GLfloat *params);
extern void GLAPIENTRY
_mesa_TextureParameterf(GLuint texture, GLenum pname, GLfloat param);
+extern void GLAPIENTRY
+_mesa_TextureParameteri(GLuint texture, GLenum pname, GLint param);
+
#endif /* TEXPARAM_H */