summaryrefslogtreecommitdiff
path: root/gst-libs/gst/gl/gstglcontext.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/gl/gstglcontext.c')
-rw-r--r--gst-libs/gst/gl/gstglcontext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/gl/gstglcontext.c b/gst-libs/gst/gl/gstglcontext.c
index 2c208edd0..59bcf4d9b 100644
--- a/gst-libs/gst/gl/gstglcontext.c
+++ b/gst-libs/gst/gl/gstglcontext.c
@@ -541,9 +541,9 @@ GstGLAPI
gst_gl_context_get_current_gl_api (GstGLPlatform platform, guint * major,
guint * minor)
{
- const GLubyte *(*GetString) (GLenum name);
+ const GLubyte *(GSTGLAPI *GetString) (GLenum name);
#if GST_GL_HAVE_OPENGL
- void (*GetIntegerv) (GLenum name, GLuint * n);
+ void (GSTGLAPI *GetIntegerv) (GLenum name, GLuint * n);
#endif
const gchar *version;
gint maj, min, n;