Add graphics system information to debug output

This commit is contained in:
Martin Gräßlin 2012-03-08 07:46:21 +01:00
parent 75a26a41b2
commit 23485fd604

View file

@ -2177,6 +2177,12 @@ QString Workspace::supportInformation() const
}
support.append("\nCompositing\n");
support.append( "===========\n");
support.append("Qt Graphics System: ");
if (Extensions::nonNativePixmaps()) {
support.append("raster\n");
} else {
support.append("native\n");
}
if (effects) {
support.append("Compositing is active\n");
switch (effects->compositingType()) {