summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wayland/gl_integration
diff options
context:
space:
mode:
authorJorgen Lind <jorgen.lind@gmail.com>2012-07-17 13:38:16 +0200
committerPaul Olav Tvete <paul.tvete@nokia.com>2012-07-17 16:53:32 +0200
commit32fdbf184b7478f83e4d6ff4dba3dbe150eb9e9b (patch)
tree1987cb730c7d3503951de36bbc7a3a9418350893 /src/plugins/platforms/wayland/gl_integration
parent3ae60a1dbb397df2f293e62c3978c11a0d9c9453 (diff)
Config tests for gl integration
Change-Id: Ie7d80e7591d11aa5df87ca5d5de4cd6c03928c83 Reviewed-by: Paul Olav Tvete <paul.tvete@nokia.com>
Diffstat (limited to 'src/plugins/platforms/wayland/gl_integration')
-rw-r--r--src/plugins/platforms/wayland/gl_integration/gl_integration.pri81
1 files changed, 31 insertions, 50 deletions
diff --git a/src/plugins/platforms/wayland/gl_integration/gl_integration.pri b/src/plugins/platforms/wayland/gl_integration/gl_integration.pri
index 720f304bf..5fc7c4302 100644
--- a/src/plugins/platforms/wayland/gl_integration/gl_integration.pri
+++ b/src/plugins/platforms/wayland/gl_integration/gl_integration.pri
@@ -1,4 +1,4 @@
-QT_WAYLAND_GL_CONFIG = $$(QT_WAYLAND_GL_CONFIG)
+isEmpty(QT_WAYLAND_GL_CONFIG):QT_WAYLAND_GL_CONFIG = $$(QT_WAYLAND_GL_CONFIG)
contains(QT_CONFIG, opengl):!equals(QT_WAYLAND_GL_CONFIG, nogl) {
DEFINES += QT_WAYLAND_GL_SUPPORT
@@ -9,61 +9,42 @@ contains(QT_CONFIG, opengl):!equals(QT_WAYLAND_GL_CONFIG, nogl) {
SOURCES += \
$$PWD/qwaylandglintegration.cpp
- contains(QT_CONFIG, opengles2) {
- isEqual(QT_WAYLAND_GL_CONFIG, xcomposite_egl) {
+ equals(QT_WAYLAND_GL_CONFIG, brcm_egl) {
+ CONFIG -= config_wayland_egl config_xcomposite
+ }
+
+ equals(QT_WAYLAND_GL_CONFIG, xcomposite) {
+ CONFIG -= config_wayland_egl config_brcm_egl
+ }
+
+ config_wayland_egl {
+ include ($$PWD/wayland_egl/wayland_egl.pri)
+ QT_WAYLAND_GL_INTEGRATION = wayland_egl
+ }else:config_brcm_egl {
+ include ($$PWD/brcm_egl/brcm_egl.pri)
+ QT_WAYLAND_GL_INTEGRATION = brcm_egl
+ }else:config_xcomposite {
+ config_egl {
+ include ($$PWD/xcomposite_egl/xcomposite_egl.pri)
QT_WAYLAND_GL_INTEGRATION = xcomposite_egl
- CONFIG += xcomposite_egl
- } else:isEqual(QT_WAYLAND_GL_CONFIG,readback) {
- QT_WAYLAND_GL_INTEGRATION = readback_egl
- CONFIG += readback_egl
- } else:isEqual(QT_WAYLAND_GL_CONFIG, brcm_egl)|isEmpty(QT_WAYLAND_GL_CONFIG):config_brcm_egl {
- QT_WAYLAND_GL_INTEGRATION = brcm_egl
- CONFIG += brcm_egl
- } else {
- QT_WAYLAND_GL_INTEGRATION = wayland_egl
- CONFIG += wayland_egl
+ }else:config_glx {
+ include ($$PWD/xcomposite_glx/xcomposite_glx.pri)
+ QT_WAYLAND_GL_INTEGRATION = xcomposite_glx
}
- } else:mac {
- QT_WAYLAND_GL_INTEGRATION = readback_cgl
- CONFIG += readback_cgl
- } else {
- isEqual(QT_WAYLAND_GL_CONFIG, readback) {
+ }else:mac {
+ include ($$PWD/readback_cgl/readback_cgl.pri)
+ QT_WAYLAND_GL_INTEGRATION = readback_cgl
+ }else {
+ config_egl {
+ include ($$PWD/readback_egl/readback_egl.pri)
+ QT_WAYLAND_GL_INTEGRATION = readback_egl
+ }else:config_glx {
+ include ($$PWD/readback_glx/readback_glx.pri)
QT_WAYLAND_GL_INTEGRATION = readback_glx
- CONFIG += readback_glx
- } else {
- QT_WAYLAND_GL_INTEGRATION = xcomposite_glx
- CONFIG += xcomposite_glx
}
}
- message("Wayland GL Integration: $$QT_WAYLAND_GL_INTEGRATION")
-}
+ system(echo "Qt Wayland plugin configured with openGL integration: $$QT_WAYLAND_GL_INTEGRATION")
-
-wayland_egl {
- include ($$PWD/wayland_egl/wayland_egl.pri)
}
-readback_egl {
- include ($$PWD/readback_egl/readback_egl.pri)
-}
-
-brcm_egl {
- include ($$PWD/brcm_egl/brcm_egl.pri)
-}
-
-readback_glx {
- include ($$PWD/readback_glx/readback_glx.pri)
-}
-
-readback_cgl {
- include ($$PWD/readback_cgl/readback_cgl.pri)
-}
-
-xcomposite_glx {
- include ($$PWD/xcomposite_glx/xcomposite_glx.pri)
-}
-
-xcomposite_egl {
- include ($$PWD/xcomposite_egl/xcomposite_egl.pri)
-}