diff options
author | Julien Isorce <julien.isorce@gmail.com> | 2008-11-05 02:06:33 +0100 |
---|---|---|
committer | Matthew Waters <ystreet00@gmail.com> | 2014-03-15 18:36:29 +0100 |
commit | cfd7f1be38d3ccbab121a5f19e5131620a9dac94 (patch) | |
tree | 73f93a4d590e25c9b216de570dd16c45a7a789d1 /gst-libs/gst/gl/gstglwindow.h | |
parent | fbdf2deda060b5cf3507c4d4d68770e9be3c23db (diff) | |
download | gstreamer-plugins-bad-cfd7f1be38d3ccbab121a5f19e5131620a9dac94.tar.gz |
[257/906] begin gstglwindow_x11.c implementation
Diffstat (limited to 'gst-libs/gst/gl/gstglwindow.h')
-rw-r--r-- | gst-libs/gst/gl/gstglwindow.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gst-libs/gst/gl/gstglwindow.h b/gst-libs/gst/gl/gstglwindow.h index c42b332d8..31ae879cb 100644 --- a/gst-libs/gst/gl/gstglwindow.h +++ b/gst-libs/gst/gl/gstglwindow.h @@ -1,4 +1,4 @@ -/* +/* * GStreamer * Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com> * @@ -40,6 +40,9 @@ G_BEGIN_DECLS typedef void (* GstGLWindowCB) ( gpointer ); typedef void (* GstGLWindowCB2) ( gpointer, gint, gint ); +#define GST_GL_WINDOW_CB(f) ((GstGLWindowCB) (f)) +#define GST_GL_WINDOW_CB2(f) ((GstGLWindowCB2) (f)) + typedef struct _GstGLWindow GstGLWindow; typedef struct _GstGLWindowPrivate GstGLWindowPrivate; typedef struct _GstGLWindowClass GstGLWindowClass; |