RESOLVED FIXED 78728
Box shadow drawing takes an unnecessarily slow code path in some single-shadow, opaque-background cases
https://bugs.webkit.org/show_bug.cgi?id=78728
Summary Box shadow drawing takes an unnecessarily slow code path in some single-shado...
mitz
Reported 2012-02-15 12:17:55 PST
Box shadow drawing takes an unnecessarily slow code path in some single-shadow, opaque-background cases
Attachments
Let the background cast the shadow directly in some cases where this is possible (14.26 KB, patch)
2012-02-15 12:31 PST, mitz
hyatt: review+
mitz
Comment 1 2012-02-15 12:18:23 PST
mitz
Comment 2 2012-02-15 12:31:42 PST
Created attachment 127213 [details] Let the background cast the shadow directly in some cases where this is possible
Dave Hyatt
Comment 3 2012-02-15 12:44:42 PST
Comment on attachment 127213 [details] Let the background cast the shadow directly in some cases where this is possible It's slightly slower, but you could simplify the patch considerably if you just moved: if (!boxShadowShouldBeAppliedToBackground(determineBackgroundBleedAvoidance(paintInfo.context))) paintBoxShadow(paintInfo, rect, style(), Normal); inside RenderBoxModelObject::paintBoxShadow. Then you wouldn't have to patch a bunch of call sites, and you wouldn't even have to touch InlineFlowBox. I'll leave it up to you, though, since your way is ever-so-slightly faster at the cost of complicating every call site.
mitz
Comment 4 2012-02-15 13:05:28 PST
I can't do this because InlineFlowBox doesn't use determineBackgroundBleedAvoidance(). Thanks for the review!
mitz
Comment 5 2012-02-15 13:58:06 PST
mitz
Comment 7 2012-02-15 15:45:05 PST
Thanks. These differences do occur in OS X WebKit, but I failed to notice them.
mitz
Comment 8 2012-02-15 16:22:41 PST
Filed bug 78759.
Tony Chang
Comment 9 2012-02-15 19:21:45 PST
Comment on attachment 127213 [details] Let the background cast the shadow directly in some cases where this is possible View in context: https://bugs.webkit.org/attachment.cgi?id=127213&action=review > Source/WebCore/rendering/RenderBoxModelObject.cpp:2611 > + for (const FillLayer* next = lastBackgroundLayer->next(); next; ) > + lastBackgroundLayer = next; This loop is bad. We never iterate after the first iteration. Did you mean to have next = lastBackgroundLayer->next() as the third part of the for statement?
mitz
Comment 10 2012-02-15 19:31:20 PST
(In reply to comment #9) > (From update of attachment 127213 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=127213&action=review > > > Source/WebCore/rendering/RenderBoxModelObject.cpp:2611 > > + for (const FillLayer* next = lastBackgroundLayer->next(); next; ) > > + lastBackgroundLayer = next; > > This loop is bad. We never iterate after the first iteration. Did you mean to have next = lastBackgroundLayer->next() as the third part of the for statement? Yes. Thanks for noticing it!
Note You need to log in before you can comment on or make changes to this bug.