WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
74370
Hardware-backed renderLayer could avoid repainting during a positioned movement layout
https://bugs.webkit.org/show_bug.cgi?id=74370
Summary
Hardware-backed renderLayer could avoid repainting during a positioned moveme...
Julien Chaffraix
Reported
2011-12-12 16:30:40 PST
The current logic always repaints the old and the new position of the positioned object as part of RenderLayer::updateLayerPositions. However if we have a backing, we could be able to just recomposite and avoid the repaint invalidation. This was seen as part of
http://jsbin.com/ulofav
where several repaints can be seen on the animated div to be related to the RenderLayer logic after layouting the div.
Attachments
Proposed optimization: Pass the did-a-positioned-movement-layout to RenderLayer and avoid repainting in this case if we have a backing.
(15.64 KB, patch)
2011-12-12 18:07 PST
,
Julien Chaffraix
no flags
Details
Formatted Diff
Diff
Added more testing following Simon's cue, a passing test is worth 1000 words.
(21.38 KB, patch)
2011-12-14 08:33 PST
,
Julien Chaffraix
no flags
Details
Formatted Diff
Diff
Updated change: RepaintAfterLayout -> NeedsNormalRepaint (should make the enum values less confusing) + addressed Simon's comments.
(21.49 KB, patch)
2011-12-15 03:32 PST
,
Julien Chaffraix
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Julien Chaffraix
Comment 1
2011-12-12 18:07:58 PST
Created
attachment 118929
[details]
Proposed optimization: Pass the did-a-positioned-movement-layout to RenderLayer and avoid repainting in this case if we have a backing.
Simon Fraser (smfr)
Comment 2
2011-12-12 18:12:36 PST
Comment on
attachment 118929
[details]
Proposed optimization: Pass the did-a-positioned-movement-layout to RenderLayer and avoid repainting in this case if we have a backing. Does this do the right thing for a positioned-movement-only of a non-composited abs pos inside a compositing layer?
Julien Chaffraix
Comment 3
2011-12-12 18:25:08 PST
(In reply to
comment #2
)
> (From update of
attachment 118929
[details]
) > Does this do the right thing for a positioned-movement-only of a non-composited abs pos inside a compositing layer?
I would say so: it would do an invalidation as isComposited() will return false. Do you want the test coverage to be broadened and include that case or do you think this is already covered?
Julien Chaffraix
Comment 4
2011-12-14 08:33:32 PST
Created
attachment 119222
[details]
Added more testing following Simon's cue, a passing test is worth 1000 words.
Simon Fraser (smfr)
Comment 5
2011-12-14 08:48:41 PST
Comment on
attachment 119222
[details]
Added more testing following Simon's cue, a passing test is worth 1000 words. View in context:
https://bugs.webkit.org/attachment.cgi?id=119222&action=review
> Source/WebCore/rendering/RenderLayer.h:79 > + RepaintAfterLayout = 0, > + NeedsFullRepaint = 1, > + NeedsFullRepaintForPositionedMovementLayout = 1 << 1,
These values are slightly confusing. Maybe it's not used, but "no repaint needed" would be a sensible 0 value, with the other values all non-zero. I also find 1 << 0, 1, << 1 a bit more consistent.
> Source/WebCore/rendering/RenderLayer.h:751 > + RepaintStatus m_repaintStatus : 2;
I think we normally stuff enums into unsigned bitfield fields, for Windows?
Julien Chaffraix
Comment 6
2011-12-15 01:47:35 PST
Comment on
attachment 119222
[details]
Added more testing following Simon's cue, a passing test is worth 1000 words. View in context:
https://bugs.webkit.org/attachment.cgi?id=119222&action=review
>> Source/WebCore/rendering/RenderLayer.h:79 >> + NeedsFullRepaintForPositionedMovementLayout = 1 << 1, > > These values are slightly confusing. Maybe it's not used, but "no repaint needed" would be a sensible 0 value, with the other values all non-zero. > > I also find 1 << 0, 1, << 1 a bit more consistent.
The NoRepaintNeeded is indeed never uses as we rely always on the RenderLayers for properly repainting after layout. That's why the default value is RepaintAfterLayout. I am fine with adding this value in case we want to support it at some point (I will put a comment that it is unused though).
>> Source/WebCore/rendering/RenderLayer.h:751 >> + RepaintStatus m_repaintStatus : 2; > > I think we normally stuff enums into unsigned bitfield fields, for Windows?
You're right, I will switch to unsigned to avoid the issue with padding on Windows.
Julien Chaffraix
Comment 7
2011-12-15 02:18:45 PST
Comment on
attachment 119222
[details]
Added more testing following Simon's cue, a passing test is worth 1000 words. View in context:
https://bugs.webkit.org/attachment.cgi?id=119222&action=review
>>> Source/WebCore/rendering/RenderLayer.h:79 >>> + NeedsFullRepaintForPositionedMovementLayout = 1 << 1, >> >> These values are slightly confusing. Maybe it's not used, but "no repaint needed" would be a sensible 0 value, with the other values all non-zero. >> >> I also find 1 << 0, 1, << 1 a bit more consistent. > > The NoRepaintNeeded is indeed never uses as we rely always on the RenderLayers for properly repainting after layout. That's why the default value is RepaintAfterLayout. > > I am fine with adding this value in case we want to support it at some point (I will put a comment that it is unused though).
I have to amend this: adding NoRepaintNeeded adds one extra (unneeded) bit to m_repaintStatus. Although I don't think this will grow RenderLayer by another byte, it is still using a bit that could be used for better optimizations. I would rather not add NoRepaintNeeded in this case and will post a patch in this direction.
Julien Chaffraix
Comment 8
2011-12-15 03:32:42 PST
Created
attachment 119407
[details]
Updated change: RepaintAfterLayout -> NeedsNormalRepaint (should make the enum values less confusing) + addressed Simon's comments.
Simon Fraser (smfr)
Comment 9
2011-12-15 08:26:22 PST
Comment on
attachment 119407
[details]
Updated change: RepaintAfterLayout -> NeedsNormalRepaint (should make the enum values less confusing) + addressed Simon's comments. View in context:
https://bugs.webkit.org/attachment.cgi?id=119407&action=review
> Source/WebCore/rendering/RenderLayer.cpp:891 > + if (m_repaintStatus == NeedsNormalRepaint)
I'm surprised you don't need casts here from unsigned to the enum.
Julien Chaffraix
Comment 10
2011-12-15 08:59:24 PST
Comment on
attachment 119407
[details]
Updated change: RepaintAfterLayout -> NeedsNormalRepaint (should make the enum values less confusing) + addressed Simon's comments. View in context:
https://bugs.webkit.org/attachment.cgi?id=119407&action=review
>> Source/WebCore/rendering/RenderLayer.cpp:891 >> + if (m_repaintStatus == NeedsNormalRepaint) > > I'm surprised you don't need casts here from unsigned to the enum.
Interestingly, it seems to be compiling on all platforms (I tested the patch on mac before submitting).
WebKit Review Bot
Comment 11
2011-12-15 09:56:04 PST
Comment on
attachment 119407
[details]
Updated change: RepaintAfterLayout -> NeedsNormalRepaint (should make the enum values less confusing) + addressed Simon's comments. Clearing flags on attachment: 119407 Committed
r102952
: <
http://trac.webkit.org/changeset/102952
>
WebKit Review Bot
Comment 12
2011-12-15 09:56:09 PST
All reviewed patches have been landed. Closing bug.
Simon Fraser (smfr)
Comment 13
2013-05-18 12:43:25 PDT
I think this caused
bug 116319
.
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