| 1 | /* | 
|---|---|
| 2 | * GStreamer | 
| 3 | * Copyright (C) 2013 Julien Isorce <julien.isorce@gmail.com> | 
| 4 | * | 
| 5 | * This library is free software; you can redistribute it and/or | 
| 6 | * modify it under the terms of the GNU Library General Public | 
| 7 | * License as published by the Free Software Foundation; either | 
| 8 | * version 2 of the License, or (at your option) any later version. | 
| 9 | * | 
| 10 | * This library is distributed in the hope that it will be useful, | 
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 
| 13 | * Library General Public License for more details. | 
| 14 | * | 
| 15 | * You should have received a copy of the GNU Library General Public | 
| 16 | * License along with this library; if not, write to the | 
| 17 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, | 
| 18 | * Boston, MA 02110-1301, USA. | 
| 19 | */ | 
| 20 | |
| 21 | #ifndef __GST_GL_H__ | 
| 22 | #define __GST_GL_H__ | 
| 23 | |
| 24 | #include <gst/gl/gstgl_fwd.h> | 
| 25 | #include <gst/gl/gl-enumtypes.h> | 
| 26 | #include <gst/gl/gstglapi.h> | 
| 27 | #include <gst/gl/gstglconfig.h> | 
| 28 | #include <gst/gl/gstglcontext.h> | 
| 29 | #include <gst/gl/gstglcontextconfig.h> | 
| 30 | #include <gst/gl/gstgldebug.h> | 
| 31 | #include <gst/gl/gstgldisplay.h> | 
| 32 | #include <gst/gl/gstglfeature.h> | 
| 33 | #include <gst/gl/gstglformat.h> | 
| 34 | #include <gst/gl/gstglutils.h> | 
| 35 | #include <gst/gl/gstglwindow.h> | 
| 36 | #include <gst/gl/gstglslstage.h> | 
| 37 | #include <gst/gl/gstglshader.h> | 
| 38 | #include <gst/gl/gstglshaderstrings.h> | 
| 39 | #include <gst/gl/gstglcolorconvert.h> | 
| 40 | #include <gst/gl/gstglupload.h> | 
| 41 | #include <gst/gl/gstglbasememory.h> | 
| 42 | #include <gst/gl/gstglbuffer.h> | 
| 43 | #include <gst/gl/gstglmemory.h> | 
| 44 | #include <gst/gl/gstglmemorypbo.h> | 
| 45 | #include <gst/gl/gstglrenderbuffer.h> | 
| 46 | #include <gst/gl/gstglbufferpool.h> | 
| 47 | #include <gst/gl/gstglframebuffer.h> | 
| 48 | #include <gst/gl/gstglbasefilter.h> | 
| 49 | #include <gst/gl/gstglbasesrc.h> | 
| 50 | #include <gst/gl/gstglviewconvert.h> | 
| 51 | #include <gst/gl/gstglfilter.h> | 
| 52 | #include <gst/gl/gstglsyncmeta.h> | 
| 53 | #include <gst/gl/gstgloverlaycompositor.h> | 
| 54 | #include <gst/gl/gstglquery.h> | 
| 55 | |
| 56 | #endif /* __GST_GL_H__ */ | 
| 57 | 
