Add graphics system information to debug output
This commit is contained in:
parent
75a26a41b2
commit
23485fd604
1 changed files with 6 additions and 0 deletions
|
@ -2177,6 +2177,12 @@ QString Workspace::supportInformation() const
|
||||||
}
|
}
|
||||||
support.append("\nCompositing\n");
|
support.append("\nCompositing\n");
|
||||||
support.append( "===========\n");
|
support.append( "===========\n");
|
||||||
|
support.append("Qt Graphics System: ");
|
||||||
|
if (Extensions::nonNativePixmaps()) {
|
||||||
|
support.append("raster\n");
|
||||||
|
} else {
|
||||||
|
support.append("native\n");
|
||||||
|
}
|
||||||
if (effects) {
|
if (effects) {
|
||||||
support.append("Compositing is active\n");
|
support.append("Compositing is active\n");
|
||||||
switch (effects->compositingType()) {
|
switch (effects->compositingType()) {
|
||||||
|
|
Loading…
Reference in a new issue