summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@nokia.com>2011-04-11 11:38:53 (GMT)
committerJørgen Lind <jorgen.lind@nokia.com>2011-04-11 11:59:01 (GMT)
commit1ce473ee7e2f76e0e670ed645881282288e5ab29 (patch)
treec00c114a9c64363719bc83a2ba3e9a3d0c41c1be /src
parent15d84435d0b41b866da77367e41ebc523409ce95 (diff)
downloadQt-1ce473ee7e2f76e0e670ed645881282288e5ab29.zip
Qt-1ce473ee7e2f76e0e670ed645881282288e5ab29.tar.gz
Qt-1ce473ee7e2f76e0e670ed645881282288e5ab29.tar.bz2
Wayland: Tell what backend we use for xcomposite glx
Diffstat (limited to 'src')
-rw-r--r--src/plugins/platforms/wayland/gl_integration/xcomposite_glx/qwaylandxcompositeglxintegration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/wayland/gl_integration/xcomposite_glx/qwaylandxcompositeglxintegration.cpp b/src/plugins/platforms/wayland/gl_integration/xcomposite_glx/qwaylandxcompositeglxintegration.cpp
index da92bc8..2b123cc 100644
--- a/src/plugins/platforms/wayland/gl_integration/xcomposite_glx/qwaylandxcompositeglxintegration.cpp
+++ b/src/plugins/platforms/wayland/gl_integration/xcomposite_glx/qwaylandxcompositeglxintegration.cpp
@@ -56,6 +56,7 @@ QWaylandXCompositeGLXIntegration::QWaylandXCompositeGLXIntegration(QWaylandDispl
: QWaylandGLIntegration()
, mWaylandDisplay(waylandDispaly)
{
+ qDebug() << "Wayland XComposite GLX Integration";
wl_display_add_global_listener(waylandDispaly->wl_display(), QWaylandXCompositeGLXIntegration::wlDisplayHandleGlobal,
this);
}
@@ -118,7 +119,6 @@ void QWaylandXCompositeGLXIntegration::rootInformation(void *data, wl_xcomposite
Q_UNUSED(xcomposite);
QWaylandXCompositeGLXIntegration *integration = static_cast<QWaylandXCompositeGLXIntegration *>(data);
- qDebug() << "ROOT INFORMATION" << integration->mDisplay << integration->mRootWindow << integration->mScreen;
integration->mDisplay = XOpenDisplay(display_name);
integration->mRootWindow = (Window) root_window;
integration->mScreen = XDefaultScreen(integration->mDisplay);