Commit 4d3c3a08 authored by Laszlo Agocs's avatar Laszlo Agocs
Browse files

Get rid of the egl config test and use what qtbase provides


contains(QT_CONFIG, egl) and CONFIG += egl is the only sane way to test
for and pull in EGL headers and libs. This is particularly important when
trying to be robust and guard against half-broken sysroots on embedded
where a naive PKGCONFIG += egl breaks.

Also add an EGL_WAYLAND_BUFFER_WL define to keep wayland-egl compiling.
We are not testing for that in any config tests may cause a failure in sysroots
that have parts of Mesa thrown in but pick ip an older EGL header from the
vendor's driver.

Change-Id: I7b7e6a7a91e78dbda5b6954ad08761298c538efc
Reviewed-by: default avatarGiulio Camuffo <giulio.camuffo@jollamobile.com>
Showing with 36 additions and 86 deletions
TARGET = egl
QT = core
!contains(QT_CONFIG, opengl): error("egl support requires Qt configured with OpenGL")
!contains(QT_CONFIG, egl): error("egl support requires Qt configured with EGL")
!contains(QT_CONFIG, no-pkg-config) {
CONFIG += link_pkgconfig
PKGCONFIG += egl
} else {
LIBS += -lEGL
}
# Input
SOURCES += main.cpp
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Compositor.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <EGL/egl.h>
int main(int argc, char **argv)
{
EGLDisplay display = eglGetDisplay(0);
return 0;
}
...@@ -6,7 +6,6 @@ qtCompileTest(xkbcommon) ...@@ -6,7 +6,6 @@ qtCompileTest(xkbcommon)
qtCompileTest(wayland_cursor) qtCompileTest(wayland_cursor)
qtCompileTest(wayland_scanner) qtCompileTest(wayland_scanner)
qtCompileTest(wayland_egl) qtCompileTest(wayland_egl)
qtCompileTest(egl)
qtCompileTest(brcm_egl) qtCompileTest(brcm_egl)
qtCompileTest(glx) qtCompileTest(glx)
qtCompileTest(xcomposite) qtCompileTest(xcomposite)
......
...@@ -7,12 +7,7 @@ contains(QT_CONFIG, no-pkg-config) { ...@@ -7,12 +7,7 @@ contains(QT_CONFIG, no-pkg-config) {
LIBS += -lwayland-client LIBS += -lwayland-client
} }
for(p, QMAKE_LIBDIR_EGL) { CONFIG += egl
exists($$p):LIBS += -L$$p
}
LIBS += $$QMAKE_LIBS_EGL
INCLUDEPATH += $$QMAKE_INCDIR_EGL
SOURCES += $$PWD/qwaylandbrcmeglintegration.cpp \ SOURCES += $$PWD/qwaylandbrcmeglintegration.cpp \
$$PWD/qwaylandbrcmglcontext.cpp \ $$PWD/qwaylandbrcmglcontext.cpp \
......
INCLUDEPATH += $$PWD INCLUDEPATH += $$PWD
contains(QT_CONFIG, no-pkg-config) { contains(QT_CONFIG, no-pkg-config) {
LIBS += -lEGL -lwayland-client LIBS += -lwayland-client
} else { } else {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += egl wayland-client PKGCONFIG += wayland-client
} }
CONFIG += egl
SOURCES += \ SOURCES += \
$$PWD/drmeglserverbufferintegration.cpp $$PWD/drmeglserverbufferintegration.cpp
......
INCLUDEPATH += $$PWD INCLUDEPATH += $$PWD
!contains(QT_CONFIG, no-pkg-config) { !contains(QT_CONFIG, no-pkg-config) {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += wayland-client wayland-egl egl PKGCONFIG += wayland-client wayland-egl
} else { } else {
LIBS += -lwayland-egl -lEGL LIBS += -lwayland-egl
} }
CONFIG += egl
SOURCES += $$PWD/qwaylandeglclientbufferintegration.cpp \ SOURCES += $$PWD/qwaylandeglclientbufferintegration.cpp \
$$PWD/qwaylandglcontext.cpp \ $$PWD/qwaylandglcontext.cpp \
$$PWD/qwaylandeglwindow.cpp $$PWD/qwaylandeglwindow.cpp
......
...@@ -3,11 +3,13 @@ include($$PWD/../xcomposite_share/xcomposite_share.pri) ...@@ -3,11 +3,13 @@ include($$PWD/../xcomposite_share/xcomposite_share.pri)
!contains(QT_CONFIG, no-pkg-config) { !contains(QT_CONFIG, no-pkg-config) {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += wayland-client xcomposite egl x11 PKGCONFIG += wayland-client xcomposite x11
} else { } else {
LIBS += -lXcomposite -lEGL -lX11 LIBS += -lXcomposite -lX11
} }
CONFIG += egl
SOURCES += \ SOURCES += \
$$PWD/qwaylandxcompositeeglcontext.cpp \ $$PWD/qwaylandxcompositeeglcontext.cpp \
$$PWD/qwaylandxcompositeeglclientbufferintegration.cpp \ $$PWD/qwaylandxcompositeeglclientbufferintegration.cpp \
......
INCLUDEPATH += $$PWD INCLUDEPATH += $$PWD
contains(QT_CONFIG, no-pkg-config) { contains(QT_CONFIG, no-pkg-config) {
LIBS += -lwayland-server -lEGL LIBS += -lwayland-server
} else { } else {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += wayland-server egl PKGCONFIG += wayland-server
} }
CONFIG += egl
SOURCES += \ SOURCES += \
$$PWD/drmeglserverbufferintegration.cpp $$PWD/drmeglserverbufferintegration.cpp
......
INCLUDEPATH += $$PWD INCLUDEPATH += $$PWD
contains(QT_CONFIG, no-pkg-config) { contains(QT_CONFIG, no-pkg-config) {
LIBS += -lwayland-server -lEGL LIBS += -lwayland-server
} else { } else {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += wayland-server egl PKGCONFIG += wayland-server
} }
CONFIG += egl
SOURCES += \ SOURCES += \
$$PWD/libhybriseglserverbufferintegration.cpp $$PWD/libhybriseglserverbufferintegration.cpp
......
...@@ -2,11 +2,13 @@ INCLUDEPATH += $$PWD ...@@ -2,11 +2,13 @@ INCLUDEPATH += $$PWD
!contains(QT_CONFIG, no-pkg-config) { !contains(QT_CONFIG, no-pkg-config) {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += wayland-server wayland-egl egl PKGCONFIG += wayland-server wayland-egl
} else { } else {
LIBS += -lwayland-egl -lwayland-server -lEGL LIBS += -lwayland-egl -lwayland-server
} }
CONFIG += egl
SOURCES += \ SOURCES += \
$$PWD/waylandeglclientbufferintegration.cpp $$PWD/waylandeglclientbufferintegration.cpp
......
...@@ -59,6 +59,10 @@ ...@@ -59,6 +59,10 @@
#define GL_TEXTURE_EXTERNAL_OES 0x8D65 #define GL_TEXTURE_EXTERNAL_OES 0x8D65
#endif #endif
#ifndef EGL_WAYLAND_BUFFER_WL
#define EGL_WAYLAND_BUFFER_WL 0x31D5
#endif
/* Needed for compatibility with Mesa older than 10.0. */ /* Needed for compatibility with Mesa older than 10.0. */
typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL_compat) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL_compat) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
......
...@@ -2,11 +2,13 @@ include($$PWD/../xcomposite_share/xcomposite_share.pri) ...@@ -2,11 +2,13 @@ include($$PWD/../xcomposite_share/xcomposite_share.pri)
!contains(QT_CONFIG, no-pkg-config) { !contains(QT_CONFIG, no-pkg-config) {
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += xcomposite egl x11 wayland-server PKGCONFIG += xcomposite x11 wayland-server
} else { } else {
LIBS += -lXcomposite -lEGL -lX11 LIBS += -lXcomposite -lX11
} }
CONFIG += egl
INCLUDEPATH += $$PWD INCLUDEPATH += $$PWD
HEADERS += \ HEADERS += \
......
...@@ -7,7 +7,7 @@ config_brcm_egl: \ ...@@ -7,7 +7,7 @@ config_brcm_egl: \
SUBDIRS += brcm-egl SUBDIRS += brcm-egl
config_xcomposite { config_xcomposite {
config_egl: \ contains(QT_CONFIG, egl): \
SUBDIRS += xcomposite-egl SUBDIRS += xcomposite-egl
!contains(QT_CONFIG, opengles2):config_glx: \ !contains(QT_CONFIG, opengles2):config_glx: \
......
...@@ -6,7 +6,7 @@ config_brcm_egl: \ ...@@ -6,7 +6,7 @@ config_brcm_egl: \
SUBDIRS += brcm-egl SUBDIRS += brcm-egl
config_xcomposite { config_xcomposite {
config_egl: \ contains(QT_CONFIG, egl): \
SUBDIRS += xcomposite-egl SUBDIRS += xcomposite-egl
!contains(QT_CONFIG, opengles2):config_glx: \ !contains(QT_CONFIG, opengles2):config_glx: \
......
...@@ -13,7 +13,7 @@ contains(CONFIG, wayland-compositor) { ...@@ -13,7 +13,7 @@ contains(CONFIG, wayland-compositor) {
SUBDIRS += qwayland-brcm-egl SUBDIRS += qwayland-brcm-egl
config_xcomposite { config_xcomposite {
config_egl: \ contains(QT_CONFIG, egl): \
SUBDIRS += qwayland-xcomposite-egl SUBDIRS += qwayland-xcomposite-egl
!contains(QT_CONFIG, opengles2):config_glx: \ !contains(QT_CONFIG, opengles2):config_glx: \
SUBDIRS += qwayland-xcomposite-glx SUBDIRS += qwayland-xcomposite-glx
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment