gl: be consistent in gobject boilerpate
[platform/upstream/gst-plugins-good.git] / ext / qt / gstqtgl.h
1 /*
2  * GStreamer
3  * Copyright (C) 2015 Matthew Waters <matthew@centricular.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 /* qt uses the same trick as us to typedef GLsync on gles2 but to a different
22  * type which confuses the preprocessor.  As it's never actually used by qt
23  * public headers, define it to something else to avoid redefinition
24  * warnings/errors */
25
26 #include <gst/gl/gstglconfig.h>
27 #include <QtCore/qglobal.h>
28
29 #if defined(QT_OPENGL_ES_2) && GST_GL_HAVE_WINDOW_ANDROID
30 #define GLsync gst_qt_GLsync
31 #include <QOpenGLContext>
32 #include <QOpenGLFunctions>
33 #undef GLsync
34 #endif /* defined(QT_OPENGL_ES_2) */