2015-09-02 13:45:07 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2015 Matthew Waters <matthew@centricular.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.
|
|
|
|
*/
|
2017-09-01 13:56:04 +00:00
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
2017-08-31 04:40:44 +00:00
|
|
|
#include <QtGui/qtgui-config.h>
|
2017-09-01 13:56:04 +00:00
|
|
|
#endif
|
2015-09-02 13:45:07 +00:00
|
|
|
|
2019-02-05 04:27:49 +00:00
|
|
|
#include <gst/gl/gstglconfig.h>
|
|
|
|
|
2018-12-17 08:33:39 +00:00
|
|
|
/* The glext.h guard was renamed in 2018, but some software which
|
|
|
|
* includes their own copy of the GL headers (such as qt) might have
|
|
|
|
* older version which use the old guard. This would result in the
|
|
|
|
* header being included again (and symbols redefined).
|
|
|
|
*
|
|
|
|
* To avoid this, we define the "old" guard if the "new" guard is
|
|
|
|
* defined.*/
|
|
|
|
#if GST_GL_HAVE_OPENGL
|
|
|
|
#ifdef __gl_glext_h_
|
|
|
|
#ifndef __glext_h_
|
|
|
|
#define __glext_h_ 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-11-26 14:08:20 +00:00
|
|
|
/* pulls in GLsync, see below */
|
|
|
|
#include <QtGui/qopengl.h>
|
|
|
|
|
|
|
|
/* qt uses the same trick as us to typedef GLsync on GLES2 but to a different
|
|
|
|
* type which confuses the preprocessor. Instead of trying to reconcile the
|
|
|
|
* two, we instead use the GLsync definition from Qt from above, and ensure
|
|
|
|
* that we don't typedef GLsync in gstglfuncs.h */
|
|
|
|
#undef GST_GL_HAVE_GLSYNC
|
|
|
|
#define GST_GL_HAVE_GLSYNC 1
|
|
|
|
#include <gst/gl/gstglfuncs.h>
|
|
|
|
|
2018-07-17 06:23:54 +00:00
|
|
|
#if defined(QT_OPENGL_ES_2)
|
2019-01-19 14:19:26 +00:00
|
|
|
#include <QtGui/QOpenGLContext>
|
|
|
|
#include <QtGui/QOpenGLFunctions>
|
2015-09-02 13:45:07 +00:00
|
|
|
#endif /* defined(QT_OPENGL_ES_2) */
|