[Webkit-unassigned] [Bug 216726] Issuing a repaint inside Page::updateRendering() can schedule another rendering update

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Sep 20 14:53:07 PDT 2020


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

--- Comment #3 from Simon Fraser (smfr) <simon.fraser at apple.com> ---
To fix this we'll need to have some state that tracks the current phase of the rendering update:

enum RenderingUpdatePhase {
  Outside,
  UpdateRendering,
  Flushing,
  Painting
};

A notifyFlushRequired during UpdateRendering just needs to ensure the flush happens. A paint invalidation during UpdateRendering or Flushing doesn't need to schedule another update.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200920/52db7179/attachment-0001.htm>


More information about the webkit-unassigned mailing list