[Webkit-unassigned] [Bug 50527] [Qt] Background image rendering is slow

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Dec 5 08:39:10 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=50527





--- Comment #2 from Jakub Wieczorek <jwieczorek at webkit.org>  2010-12-05 08:39:10 PST ---
(From update of attachment 75618)
View in context: https://bugs.webkit.org/attachment.cgi?id=75618&action=review

> WebCore/platform/graphics/qt/ImageQt.cpp:110
> +    if (!destinationRect.width() || !destinationRect.height() || !destinationRect.width() || !destinationRect.height())

This should be:
if (!destinationRect.width() || !destinationRect.height() || !tileRect.width() || !tileRect.height())
or even:
if (!destinationRect.isValid() || !tileRect.isValid())

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list