WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
112095
[Texmap] Synchronise layers only if the layer has been changed.
https://bugs.webkit.org/show_bug.cgi?id=112095
Summary
[Texmap] Synchronise layers only if the layer has been changed.
JungJik Lee
Reported
2013-03-11 19:24:08 PDT
We always append m_layerState to coordinator in CoordinatedGraphicsLayer::flushCompositingStateForThisLayerOnly. This causes renderNext-circular calls continuously. So this patch checks whether the layer needs to be updated or not, if we need to update the layer, then we append layer state to coordinator. This will reduce the needless update and IPC calls.
Attachments
Proposal patch
(3.73 KB, patch)
2013-03-11 21:30 PDT
,
JungJik Lee
no flags
Details
Formatted Diff
Diff
Patch
(3.82 KB, patch)
2013-03-12 00:55 PDT
,
JungJik Lee
no flags
Details
Formatted Diff
Diff
Patch
(3.87 KB, patch)
2013-03-12 04:09 PDT
,
JungJik Lee
no flags
Details
Formatted Diff
Diff
Patch
(3.86 KB, patch)
2013-03-12 05:14 PDT
,
JungJik Lee
no flags
Details
Formatted Diff
Diff
Patch
(2.89 KB, patch)
2013-03-13 23:38 PDT
,
Noam Rosenthal
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
JungJik Lee
Comment 1
2013-03-11 21:30:37 PDT
Created
attachment 192633
[details]
Proposal patch
Dongseong Hwang
Comment 2
2013-03-11 23:16:14 PDT
Comment on
attachment 192633
[details]
Proposal patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192633&action=review
> Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:750 > + bool needToSyncThisLayer = hasChangedLayerState();
great! how about early return here or line 742?
Noam Rosenthal
Comment 3
2013-03-11 23:17:39 PDT
Comment on
attachment 192633
[details]
Proposal patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192633&action=review
Please correct nitpicks, otherwise patch looks ok.
> Source/WebCore/ChangeLog:14 > + We always append m_layerState to coordinator in CoordinatedGraphicsLayer::flushCompositingStateForThisLayerOnly. > + This causes renderNext-circular calls continuously. > + So this patch checks whether the layer needs to be updated or not, > + if we need to update the layer, then we append layer state to coordinator. > + This will reduce the needless update and IPC calls. > + > + No new tests (OOPS!).
CoordinatedGraphicsLayer always sets the layer state, which results in an infinite commit/renderNextFrame loop between the web process in the UI process. This patch breaks the infinite loop by avoiding commit if the layer state hasn't changed. There is no current facility for automatically testing this, however it doesn't break existing tests.
> Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:750 > + bool needToSyncThisLayer = hasChangedLayerState();
bool layerNeedsSync = needsSync();
> Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:775 > +bool CoordinatedGraphicsLayer::hasChangedLayerState()
rename to needsSync()
Gwang Yoon Hwang
Comment 4
2013-03-11 23:29:27 PDT
Thanks for reporting. It is the bug I made. :( I think this patch can be better using CoordinatedGraphicsLayerState::changeMask ex) if (!m_layerState.changeMask) return; in CoordinatedGraphicsLayer::flushCompositingStateForThisLayerOnly() or CoordinatedLayerTreeHost::syncLayerState BTW, I think we need clean up m_shouldSync...series in CoordinatedGraphicsLayerState. We can use LayerState::changeMask instead of that.
Noam Rosenthal
Comment 5
2013-03-11 23:52:34 PDT
(In reply to
comment #4
)
> Thanks for reporting. > It is the bug I made. :( > > I think this patch can be better using CoordinatedGraphicsLayerState::changeMask > > ex) > if (!m_layerState.changeMask) > return;
This won't work since you also need to deal with tiles, which don't appear in the changeMask. I think JungJik's solution is ok for now.
JungJik Lee
Comment 6
2013-03-12 00:32:36 PDT
Comment on
attachment 192633
[details]
Proposal patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192633&action=review
>>> Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:750 >>> + bool needToSyncThisLayer = hasChangedLayerState(); >> >> great! how about early return here or line 742? > > bool layerNeedsSync = needsSync();
what's mean? early return. the states will be changed inside syncFunctions.
JungJik Lee
Comment 7
2013-03-12 00:55:53 PDT
Created
attachment 192660
[details]
Patch
Gwang Yoon Hwang
Comment 8
2013-03-12 01:00:21 PDT
(In reply to
comment #5
)
> (In reply to
comment #4
) > > Thanks for reporting. > > It is the bug I made. :( > > > > I think this patch can be better using CoordinatedGraphicsLayerState::changeMask > > > > ex) > > if (!m_layerState.changeMask) > > return; > This won't work since you also need to deal with tiles, which don't appear in the changeMask. I think JungJik's solution is ok for now.
I agree. I'll make another bug to clean up various states in CoordinatedGraphicsLayer.
Noam Rosenthal
Comment 9
2013-03-12 02:00:41 PDT
Comment on
attachment 192660
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192660&action=review
> Source/WebCore/ChangeLog:14 > + (WebCore::CoordinatedGraphicsLayer::flushCompositingStateForThisLayerOnly): if hasChangedLayerState is true, append m_layerState.
hasChangedLayerState -> needsSync
> Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.h:179 > + bool needsSync();
This function should be const.
JungJik Lee
Comment 10
2013-03-12 04:09:42 PDT
Created
attachment 192705
[details]
Patch
JungJik Lee
Comment 11
2013-03-12 05:14:55 PDT
Created
attachment 192714
[details]
Patch
JungJik Lee
Comment 12
2013-03-12 05:21:59 PDT
(In reply to
comment #11
)
> Created an attachment (id=192714) [details] > Patch
Add m_movingVisibleRect flag to needsSync.
Noam Rosenthal
Comment 13
2013-03-12 07:01:47 PDT
Comment on
attachment 192714
[details]
Patch This is actually wrong. We might have a m_movingVisibleRect and still not need to sync. This patch would make it so that during a transform animation we'd be constantly syncing. The right approach for this is close to what ryumiel was suggesting - add an isEmpty() function to GraphicsLayerState and not sync if that returns true.
JungJik Lee
Comment 14
2013-03-12 08:02:42 PDT
(In reply to
comment #13
)
> (From update of
attachment 192714
[details]
) > This is actually wrong. We might have a m_movingVisibleRect and still not need to sync. This patch would make it so that during a transform animation we'd be constantly syncing. > The right approach for this is close to what ryumiel was suggesting - add an isEmpty() function to GraphicsLayerState and not sync if that returns true.
I am not sure that ryumiel was suggesting. but I think we still need to sync when m_movingVisibleRect is true. because when m_movingVisibleRect is true, we get current transform to send UI Process. maybe the position of m_movingVisibleRect in needsSync is not correct. it would be "if (layerNeedsSync || hasActiveTransformAnimation)".
Noam Rosenthal
Comment 15
2013-03-13 23:38:49 PDT
Created
attachment 193074
[details]
Patch
JungJik Lee
Comment 16
2013-03-14 01:01:28 PDT
(In reply to
comment #15
)
> Created an attachment (id=193074) [details] > Patch
it's great. could you test
https://bugs.webkit.org/show_bug.cgi?id=112114
with the patch? And please, ignore the description of the test. it's wrong. thank you.
Noam Rosenthal
Comment 17
2013-03-14 01:49:20 PDT
(In reply to
comment #16
)
> (In reply to
comment #15
) > > Created an attachment (id=193074) [details] [details] > > Patch > > it's great. could you test
https://bugs.webkit.org/show_bug.cgi?id=112114
with the patch? And please, ignore the description of the test. it's wrong. thank you.
Seems ok.
Allan Sandfeld Jensen
Comment 18
2013-03-14 05:27:05 PDT
Comment on
attachment 193074
[details]
Patch r=me
Balazs Kelemen
Comment 19
2013-03-14 05:31:57 PDT
Comment on
attachment 193074
[details]
Patch Clearing flags on attachment: 193074 Committed
r145806
: <
http://trac.webkit.org/changeset/145806
>
Balazs Kelemen
Comment 20
2013-03-14 05:32:03 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug