Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=103790
The LayerPool m_pruneTimer should have a longer delay

Reviewed by Simon Fraser.

A 1 second delay is more appropriate here.
* platform/graphics/ca/mac/LayerPool.mm:
(WebCore::LayerPool::schedulePrune):



Canonical link: https://commits.webkit.org/121893@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@136298 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
dethbakin committed Dec 1, 2012
1 parent 4fbd9da commit 7084fc9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,14 @@
2012-11-30 Beth Dakin <bdakin@apple.com>

https://bugs.webkit.org/show_bug.cgi?id=103790
The LayerPool m_pruneTimer should have a longer delay

Reviewed by Simon Fraser.

A 1 second delay is more appropriate here.
* platform/graphics/ca/mac/LayerPool.mm:
(WebCore::LayerPool::schedulePrune):

2012-11-30 Jer Noble <jer.noble@apple.com>

Unreviewed Windows build fix.
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/platform/graphics/ca/mac/LayerPool.mm
Expand Up @@ -104,7 +104,7 @@
{
if (m_pruneTimer.isActive())
return;
m_pruneTimer.startOneShot(0);
m_pruneTimer.startOneShot(1);
}

void LayerPool::pruneTimerFired(Timer<LayerPool>*)
Expand Down

0 comments on commit 7084fc9

Please sign in to comment.