[Webkit-unassigned] [Bug 70407] [TexMap][QT] PageClientQt should skip redundant sync requests during Accelerated Composition.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 15 04:28:46 PST 2011


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





--- Comment #8 from Noam Rosenthal <noam.rosenthal at nokia.com>  2011-11-15 04:28:46 PST ---

> I think I did not understand wholly what you said, so I hesitated to response more because it might be small problem or not problem.
> You means it is better to resolve this bug because of INVALID?
No. It means that the fix is a lot simpler - return early in markForSync if the syncTimer is already active.
Something like

if (syncTimer.isActive())
    return;

You also might want to stop the timer in ::syncLayers.

The bug is actually that we rely on Timer::startOneShot to do nothing if the timer is already running, but that's not how Timer::startOneShot works.

-- 
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