Avoid qCWarning
qCWarning messages are shown by default. This was not the intention. Switch to qCDebug since these are not necessarily errors, just debugging information. Change-Id: I15f114fd07887afb687e40342b289a6463e0c93a Reviewed-by: Andy Nichols <andy.nichols@digia.com>
This commit is contained in:
parent
350ab22885
commit
5cd6cd198c
@ -90,15 +90,15 @@ VisualID QXlibEglIntegration::getCompatibleVisualId(Display *display, EGLDisplay
|
||||
// configs. In such a case we have to fall back to XGetVisualInfo.
|
||||
if (!visualMatchesConfig) {
|
||||
visualId = 0;
|
||||
qCWarning(lcXlibEglDebug,
|
||||
"EGL suggested using X Visual ID %d (%d %d %d depth %d) for EGL config %d"
|
||||
"(%d %d %d %d), but this is incompatible",
|
||||
(int)visualId, visualRedSize, visualGreenSize, visualBlueSize, chosenVisualInfo->depth,
|
||||
configId, configRedSize, configGreenSize, configBlueSize, configAlphaSize);
|
||||
qCDebug(lcXlibEglDebug,
|
||||
"EGL suggested using X Visual ID %d (%d %d %d depth %d) for EGL config %d"
|
||||
"(%d %d %d %d), but this is incompatible",
|
||||
(int)visualId, visualRedSize, visualGreenSize, visualBlueSize, chosenVisualInfo->depth,
|
||||
configId, configRedSize, configGreenSize, configBlueSize, configAlphaSize);
|
||||
}
|
||||
} else {
|
||||
qCWarning(lcXlibEglDebug, "EGL suggested using X Visual ID %d for EGL config %d, but that isn't a valid ID",
|
||||
(int)visualId, configId);
|
||||
qCDebug(lcXlibEglDebug, "EGL suggested using X Visual ID %d for EGL config %d, but that isn't a valid ID",
|
||||
(int)visualId, configId);
|
||||
visualId = 0;
|
||||
}
|
||||
XFree(chosenVisualInfo);
|
||||
|
Loading…
Reference in New Issue
Block a user