2013-07-10 15:03:04 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2013 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2013-07-12 09:35:52 +00:00
|
|
|
#ifndef __GST_GL_H__
|
|
|
|
#define __GST_GL_H__
|
2013-07-10 15:03:04 +00:00
|
|
|
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstgl_fwd.h>
|
2018-10-03 10:06:42 +00:00
|
|
|
#include <gst/gl/gl-enumtypes.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglapi.h>
|
2017-07-07 15:15:12 +00:00
|
|
|
#include <gst/gl/gstglconfig.h>
|
2013-08-14 00:44:19 +00:00
|
|
|
#include <gst/gl/gstglcontext.h>
|
2020-09-08 06:27:03 +00:00
|
|
|
#include <gst/gl/gstglcontextconfig.h>
|
2015-10-01 15:01:42 +00:00
|
|
|
#include <gst/gl/gstgldebug.h>
|
2017-07-07 15:15:12 +00:00
|
|
|
#include <gst/gl/gstgldisplay.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglfeature.h>
|
2015-12-14 02:43:59 +00:00
|
|
|
#include <gst/gl/gstglformat.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglutils.h>
|
|
|
|
#include <gst/gl/gstglwindow.h>
|
2015-09-04 04:36:47 +00:00
|
|
|
#include <gst/gl/gstglslstage.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglshader.h>
|
2015-11-10 02:11:37 +00:00
|
|
|
#include <gst/gl/gstglshaderstrings.h>
|
2014-04-01 02:30:51 +00:00
|
|
|
#include <gst/gl/gstglcolorconvert.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglupload.h>
|
2015-12-14 01:59:02 +00:00
|
|
|
#include <gst/gl/gstglbasememory.h>
|
2015-12-14 02:08:10 +00:00
|
|
|
#include <gst/gl/gstglbuffer.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglmemory.h>
|
2015-12-14 02:43:59 +00:00
|
|
|
#include <gst/gl/gstglmemorypbo.h>
|
2016-07-11 12:31:04 +00:00
|
|
|
#include <gst/gl/gstglrenderbuffer.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglbufferpool.h>
|
|
|
|
#include <gst/gl/gstglframebuffer.h>
|
2015-02-10 14:48:11 +00:00
|
|
|
#include <gst/gl/gstglbasefilter.h>
|
2019-08-07 15:15:40 +00:00
|
|
|
#include <gst/gl/gstglbasesrc.h>
|
2015-05-29 16:21:43 +00:00
|
|
|
#include <gst/gl/gstglviewconvert.h>
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstglfilter.h>
|
2014-10-17 13:22:24 +00:00
|
|
|
#include <gst/gl/gstglsyncmeta.h>
|
2015-06-30 15:59:12 +00:00
|
|
|
#include <gst/gl/gstgloverlaycompositor.h>
|
2016-01-08 07:36:54 +00:00
|
|
|
#include <gst/gl/gstglquery.h>
|
2013-07-10 15:03:04 +00:00
|
|
|
|
2013-07-12 09:35:52 +00:00
|
|
|
#endif /* __GST_GL_H__ */
|