diff options
author | Philippe Normand <philn@igalia.com> | 2018-02-06 16:08:47 +0000 |
---|---|---|
committer | Philippe Normand <philn@igalia.com> | 2018-02-06 16:08:47 +0000 |
commit | 32a17f313494cbadaf8ec4e337d742e8d7e1b67b (patch) | |
tree | 40c5e96be0081b170f7fcf16cf85c8ab0ef92d59 | |
parent | 9bfbda8291aa60b641351f93e140fe2fe5b2d5ee (diff) |
glcontext: remove deprecated type alias
-rw-r--r-- | gst-libs/gst/gl/gstglcontext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/gl/gstglcontext.h b/gst-libs/gst/gl/gstglcontext.h index 54383c56e..94c175d45 100644 --- a/gst-libs/gst/gl/gstglcontext.h +++ b/gst-libs/gst/gl/gstglcontext.h @@ -32,9 +32,9 @@ GType gst_gl_context_get_type (void); #define GST_TYPE_GL_CONTEXT (gst_gl_context_get_type()) /* FIXME: remove this when moving to -base */ -#ifndef GST_DISABLE_DEPRECATED -#define GST_GL_TYPE_CONTEXT GST_TYPE_GL_CONTEXT -#endif +/* #ifndef GST_DISABLE_DEPRECATED */ +/* #define GST_GL_TYPE_CONTEXT GST_TYPE_GL_CONTEXT */ +/* #endif */ #define GST_GL_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_CAST((o), GST_TYPE_GL_CONTEXT, GstGLContext)) #define GST_GL_CONTEXT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GST_TYPE_GL_CONTEXT, GstGLContextClass)) #define GST_IS_GL_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GST_TYPE_GL_CONTEXT)) |