Bug 203836 - (profiling) Resizing big widgets in Plasma is quite slow
Summary: (profiling) Resizing big widgets in Plasma is quite slow
Status: RESOLVED NOT A BUG
Alias: None
Product: plasma4
Classification: Plasma
Component: general (show other bugs)
Version: unspecified
Platform: Fedora RPMs Linux
: NOR normal
Target Milestone: ---
Assignee: Plasma Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-08-14 15:53 UTC by Clemens Eisserer
Modified: 2011-12-03 10:15 UTC (History)
4 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments
profile (784.55 KB, application/octet-stream)
2009-08-14 16:04 UTC, Clemens Eisserer
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Clemens Eisserer 2009-08-14 15:53:27 UTC
Version:            (using KDE 4.3.0)
OS:                Linux
Installed from:    Fedora RPMs

Resizing a folderview (even an empty one) is quite slow, especially when the size of the folderview exceeds ~700x700px.
This really destroys the user experience.

I did a little bit of profiling, and those were my findings (sysprof file attached):

- A lot of time is spent inside re-rendering the SVGs.
- Plasma::FrameSVG is slow too.
- A lot of time is spent in kernel-code, because a lot of XPutImage is happening.

I wonder why all the SVG contents have to be re-generated for each resize operation. Especially for the background wouldn't it be enough to pre-genarate it and use a scaled instance of it.
Once QT could use XRender to do scaling, all those operations could be hw-accelerated.
Comment 1 Clemens Eisserer 2009-08-14 16:04:30 UTC
Created attachment 36151 [details]
profile
Comment 2 marco 2009-08-15 14:16:35 UTC
This happens with all the "widgets", not only folderview.
Comment 3 Aaron J. Seigo 2009-08-25 09:45:51 UTC
"Especially for the background wouldn't it be enough to pre-genarate
it and use a scaled instance of it."

that would complete defeat the entire point of using SVGs, and at that point we may as well just use PNGs for everything.

we _used_ to just scale the entire widget during resize (4.0 and 4.1) and it looked utterly HORRIBLE.

"Once QT could use XRender to do scaling, all those operations could be
hw-accelerated."

i doubt that's how it would work out in practice, actually.

in any case, possible solutions might include:

* speeding up rendering of SVGs to pixmaps
* doing fewer updates of the widget during resizes (e.g. compressing resize events)
* pre-rendering the background at different sizes from the SVG (though that would take additional disk space and would move the problem to being disk i/o, and it would still be pushing a bunch of pixmaps around, though)
Comment 4 Rémy Greinhofer 2010-01-04 16:31:15 UTC
Using KDE SC 4.3.4, the resizing of the plasmoids is quite fluid. I am using Qt 4.5.3, the Xorg Debian package 1:7.4+4, with an Intel 945GM graphic card.

Is the problem still existing in the latest version of the softwares?
Comment 5 Clemens Eisserer 2010-01-13 20:20:31 UTC
This still happens for me, with kde-4.3.4

Add a folderview to the desktop and resize it. As soon as it approaches a size of ~1000x1000 pixels the resize-animation gets stuttering and feels slow and unresponsive. 
I'll do some profiling if've some spare time, but I guess its inefficient painting algorythms (QT doesn't even use system gradients, or picture transformations!)
Comment 6 Clemens Eisserer 2010-04-18 19:43:26 UTC
4.2.2 still present.
Simply take a folderview and resize it to screen-size - the animation barely reaches 2-3fps, wasting tons of time in SVG rasterization and poorly coded QT effects trashing the X server with readbacks.

- Clemens
Comment 7 Clemens Eisserer 2010-05-19 12:25:43 UTC
4.4.2 - still horrible slow resizing.

Because my Notebook broke I borrowed a Pentium-M based one, which features a larger display - resizing a simple FolderView plasmoid is in the range of 1-3fps.
Profiling reveals most of the time is spent in SVG rendering inside QT.

Probably KDE should re-consider using SVG for interactive rendering?
Comment 8 Clemens Eisserer 2010-06-22 11:32:48 UTC
4.4.85 - still slow.
Especially horrible on older computers with large screen.
Comment 9 Clemens Eisserer 2011-01-10 16:07:22 UTC
4.5.5 - still slow.

If I resize e.g. a folder-view plasmoid on my desktop (1920x1200) I get no more than 2-3fps.
Comment 10 Aaron J. Seigo 2011-12-03 09:16:17 UTC
it's gotten better with each release, and Qt 4.8 brings some more incremental improvements. there is only so much we can improve it further with QGraphicsScene; we hope to get more improvements with the move to QML that we're in the midst of.

unfortunately, this report has no metric for "this is now done" which is a requirement for a useful bug. we do care about performance and improve it from release to release, however :)

(on my laptop attached to a 1920x1080 screen, it resizes with quite reasonable speed even at near full screen sizes)
Comment 11 Clemens Eisserer 2011-12-03 10:15:27 UTC
I'll try out a live-cd on my laptop and report back.