diff -r b72c6db6890b -r 5dc02b23752f src/gui/egl/qeglproperties_stub.cpp --- a/src/gui/egl/qeglproperties_stub.cpp Wed Jun 23 19:07:03 2010 +0300 +++ b/src/gui/egl/qeglproperties_stub.cpp Tue Jul 06 15:10:48 2010 +0300 @@ -43,6 +43,7 @@ #include #include "qeglproperties_p.h" +#include "qeglcontext_p.h" QT_BEGIN_NAMESPACE @@ -90,6 +91,13 @@ return false; } +void QEglProperties::setDeviceType(int devType) +{ + Q_UNUSED(devType) + NOEGL +} + + // Sets the red, green, blue, and alpha sizes based on a pixel format. // Normally used to match a configuration request to the screen format. void QEglProperties::setPixelFormat(QImage::Format pixelFormat) @@ -115,6 +123,13 @@ return false; } +static void addTag(QString& str, const QString& tag) +{ + Q_UNUSED(str) + Q_UNUSED(tag) + NOEGL +} + // Convert a property list to a string suitable for debug output. QString QEglProperties::toString() const { @@ -128,11 +143,6 @@ NOEGL } -void QEglProperties::dumpAllConfigs() -{ - NOEGL -} - QT_END_NAMESPACE