summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cogl-gles2/cogl-gles2-api.c7
-rw-r--r--cogl/gl-prototypes/cogl-core-functions.h2
2 files changed, 9 insertions, 0 deletions
diff --git a/cogl-gles2/cogl-gles2-api.c b/cogl-gles2/cogl-gles2-api.c
index ce4add1b..22ab2b71 100644
--- a/cogl-gles2/cogl-gles2-api.c
+++ b/cogl-gles2/cogl-gles2-api.c
@@ -242,6 +242,13 @@ glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width,
}
void
+glTexParameterf (GLenum target, GLenum pname, GLfloat param)
+{
+ CoglGLES2Vtable *vtable = cogl_gles2_get_current_vtable ();
+ vtable->glTexParameterf (target, pname, param);
+}
+
+void
glTexParameterfv (GLenum target, GLenum pname, const GLfloat * params)
{
CoglGLES2Vtable *vtable = cogl_gles2_get_current_vtable ();
diff --git a/cogl/gl-prototypes/cogl-core-functions.h b/cogl/gl-prototypes/cogl-core-functions.h
index 9210547f..bb347dfc 100644
--- a/cogl/gl-prototypes/cogl-core-functions.h
+++ b/cogl/gl-prototypes/cogl-core-functions.h
@@ -152,6 +152,8 @@ COGL_EXT_FUNCTION (void, glTexImage2D,
GLenum format,
GLenum type,
const GLvoid* pixels))
+COGL_EXT_FUNCTION (void, glTexParameterf,
+ (GLenum target, GLenum pname, GLfloat param))
COGL_EXT_FUNCTION (void, glTexParameterfv,
(GLenum target, GLenum pname, const GLfloat* params))
COGL_EXT_FUNCTION (void, glTexParameteri,