WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 69515
40159
[Qt] Decode images in a separate thread to improve UI responsiveness
https://bugs.webkit.org/show_bug.cgi?id=40159
Summary
[Qt] Decode images in a separate thread to improve UI responsiveness
Kevin Simons
Reported
2010-06-04 00:08:58 PDT
Because QtWebKit current decodes images in the main thread, the UI performance suffers while images are being decoded. This is particularly noticeable when examining scrolling performance of image-heavy websites. Additional details: - Decoding images in a separate thread should work with the tile-based rendering in QtWebKit. Once images are decoded, tiles to which they belong should be updated. - It is sufficient to only decode images for which the width/height attributes or CSS style properties are specified in a separate thread if that simplifies layout process.
Attachments
Add attachment
proposed patch, testcase, etc.
Wellu Mäkinen
Comment 1
2010-06-04 00:34:08 PDT
Adding myself as CC.
Benjamin Poulain
Comment 2
2010-06-04 05:27:20 PDT
Please also investigate the use of the DSP.
Andreas Kling
Comment 3
2010-06-13 12:47:40 PDT
(In reply to
comment #0
)
> - It is sufficient to only decode images for which the width/height attributes or CSS style properties are specified in a separate thread if that simplifies layout process.
This should be fine. For most (all?) image formats, we get the geometry from reading the header which is done via separate API.
Benjamin Poulain
Comment 4
2010-06-13 14:17:52 PDT
Is somebody working on this? If yes, please put her/him as assigned.
Markus Goetz
Comment 5
2010-11-12 09:24:35 PST
I was given some thoughts about this some time ago. Here's what I still remember: We currently don't do progressive image decoding (AFAIK), so it should be fine to move the data to the other thread when the image has finished loading. Also there is probably some file size minimum from that it makes sense to do the work in the thread, e.g. the thread overhead is unimportant for bigger images so for those it makes sense to use a thread. Also I have this in my notes file: virtual void RenderImage::imageChanged(WrappedImagePtr, const IntRect* = 0); My thoughts were maybe that this could be called from the decoder thread or something. No idea :) Too long ago.
Zoltan Horvath
Comment 6
2012-06-14 02:45:51 PDT
*** This bug has been marked as a duplicate of
bug 69515
***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug