Changeset 147032 in webkit


Ignore:
Timestamp:
Mar 27, 2013 5:18:06 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Show compositing on the Inspector timeline properly
https://bugs.webkit.org/show_bug.cgi?id=113416

Patch by Eli Fidler <efidler@blackberry.com> on 2013-03-27
Reviewed by Rob Buis.

The call to willComposite was too early and encompased the paint calls
as well. Moving it lower will no longer encompass the paints.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::commitRootLayerIfNeeded):

Location:
trunk/Source/WebKit/blackberry
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/Api/WebPage.cpp

    r147024 r147032  
    55295529    }
    55305530
    5531     willComposite();
    55325531    m_needsCommit = false;
    55335532    // We get here either due to the commit timer, which would have called
     
    55465545        m_overlayLayer->platformLayer()->commitOnWebKitThread(scale);
    55475546
     5547    willComposite();
    55485548    // Stash the visible content rect according to webkit thread
    55495549    // This is the rectangle used to layout fixed positioned elements,
  • trunk/Source/WebKit/blackberry/ChangeLog

    r147024 r147032  
     12013-03-27  Eli Fidler <efidler@blackberry.com>
     2
     3        [BlackBerry] Show compositing on the Inspector timeline properly
     4        https://bugs.webkit.org/show_bug.cgi?id=113416
     5
     6        Reviewed by Rob Buis.
     7
     8        The call to willComposite was too early and encompased the paint calls
     9        as well.  Moving it lower will no longer encompass the paints.
     10
     11        * Api/WebPage.cpp:
     12        (BlackBerry::WebKit::WebPagePrivate::commitRootLayerIfNeeded):
     13
    1142013-03-27  Arvid Nilsson  <anilsson@rim.com>
    215
Note: See TracChangeset for help on using the changeset viewer.