diff options
author | John Ludwig <john@theludwigs.com> | 2015-06-23 10:31:44 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-06-23 10:31:44 +0200 |
commit | 1ece34af2cda3cfe2bbd2d69e6fbf6bea696b098 (patch) | |
tree | bdc3aef63676b7db45ffee15068a8c7debcc91ef | |
parent | 9664d1a6b1796491048eb579e919ab592c1ec2f6 (diff) | |
download | gstreamer-plugins-bad-1ece34af2cda3cfe2bbd2d69e6fbf6bea696b098.tar.gz |
gl: Include texParameterf in the GL function table
https://bugzilla.gnome.org/show_bug.cgi?id=751228
-rw-r--r-- | gst-libs/gst/gl/glprototypes/base.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst-libs/gst/gl/glprototypes/base.h b/gst-libs/gst/gl/glprototypes/base.h index e81673851..f0528b7b4 100644 --- a/gst-libs/gst/gl/glprototypes/base.h +++ b/gst-libs/gst/gl/glprototypes/base.h @@ -178,6 +178,10 @@ GST_GL_EXT_FUNCTION (void, Viewport, GST_GL_EXT_FUNCTION (GLboolean, IsEnabled, (GLenum cap)) GST_GL_EXT_FUNCTION (void, LineWidth, (GLfloat width)) GST_GL_EXT_FUNCTION (void, PolygonOffset, (GLfloat factor, GLfloat units)) +GST_GL_EXT_FUNCTION (void, TexParameterf, + (GLenum target, + GLenum pname, + GLfloat param)) GST_GL_EXT_END () GST_GL_EXT_BEGIN (texture_3d, |