Changeset 141412 in webkit


Ignore:
Timestamp:
Jan 31, 2013 6:07:22 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Coordinated Graphics: view the debug border/repaint count of the non composited layer.
https://bugs.webkit.org/show_bug.cgi?id=108401

Patch by Seulgi Kim <seulgikim@company100.net> on 2013-01-31
Reviewed by Noam Rosenthal.

Make non-compositing layer draw debug border and show repaint counter
accroding to settings.

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:

(WebKit::CoordinatedLayerTreeHost::CoordinatedLayerTreeHost):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r141400 r141412  
     12013-01-31  Seulgi Kim  <seulgikim@company100.net>
     2
     3        Coordinated Graphics: view the debug border/repaint count of the non composited layer.
     4        https://bugs.webkit.org/show_bug.cgi?id=108401
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Make non-compositing layer draw debug border and show repaint counter
     9        accroding to settings.
     10
     11        * WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:
     12        (WebKit::CoordinatedLayerTreeHost::CoordinatedLayerTreeHost):
     13
    1142013-01-31  Paweł Forysiuk  <tuxator@o2.pl>
    215
  • trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp

    r141384 r141412  
    115115    m_nonCompositedContentLayer->setSize(m_webPage->size());
    116116
     117    m_nonCompositedContentLayer->setShowDebugBorder(m_webPage->corePage()->settings()->showDebugBorders());
     118    m_nonCompositedContentLayer->setShowRepaintCounter(m_webPage->corePage()->settings()->showRepaintCounter());
     119
    117120    m_rootLayer->addChild(m_nonCompositedContentLayer.get());
    118121
Note: See TracChangeset for help on using the changeset viewer.