summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/eglconvenience/qeglconvenience.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@digia.com>2014-03-24 20:09:11 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-25 12:50:47 +0100
commitdc685cf6331f5fb46285cf10d6464c2ecf41f73e (patch)
tree3ac017efe2a2b8e5ef9ba7e781bf08117e377969 /src/platformsupport/eglconvenience/qeglconvenience.cpp
parentebcb5c176fa3552960f3b96c2fcbd7aaa2b29e50 (diff)
eglfs: Print the chosen config in debug mode
q_printEglConfig has been left unused. Start using it again, in case QT_QPA_EGLFS_DEBUG is set. This will, similarly to QSG_INFO, help debugging, especially on embedded devices. Change-Id: I1448632ed055dd71e98259f042d3cac64620a4ce Reviewed-by: Jørgen Lind <jorgen.lind@digia.com>
Diffstat (limited to 'src/platformsupport/eglconvenience/qeglconvenience.cpp')
-rw-r--r--src/platformsupport/eglconvenience/qeglconvenience.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/platformsupport/eglconvenience/qeglconvenience.cpp b/src/platformsupport/eglconvenience/qeglconvenience.cpp
index 7cf1f88b02..f014ae42e5 100644
--- a/src/platformsupport/eglconvenience/qeglconvenience.cpp
+++ b/src/platformsupport/eglconvenience/qeglconvenience.cpp
@@ -446,11 +446,9 @@ void q_printEglConfig(EGLDisplay display, EGLConfig config)
for (index = 0; attrs[index].attr != -1; ++index) {
EGLint value;
if (eglGetConfigAttrib(display, config, attrs[index].attr, &value)) {
- qWarning("\t%s: %d\n", attrs[index].name, (int)value);
+ qDebug("\t%s: %d", attrs[index].name, (int)value);
}
}
-
- qWarning("\n");
}
#ifdef Q_OS_LINUX