Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Issue 713823005: Factor painting code for filters out of FilterEffectRenderer into FilterPainter. (Closed)

Created:
6 years, 1 month ago by chrishtr
Modified:
6 years, 1 month ago
CC:
blink-reviews, blink-reviews-paint_chromium.org, blink-reviews-rendering, eae+blinkwatch, jchaffraix+rendering, leviw+renderwatch, pdr+renderingwatchlist_chromium.org, slimming-paint-reviews_chromium.org, zoltan1
Project:
blink
Visibility:
Public.

Description

Factor painting code for filters out of FilterEffectRenderer into FilterPainter. BUG=412088 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=185163

Patch Set 1 #

Total comments: 4

Patch Set 2 : #

Patch Set 3 : #

Total comments: 3

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Total comments: 4

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+102 lines, -57 lines) Patch
M Source/core/core.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
A Source/core/paint/FilterPainter.h View 1 2 3 4 5 6 7 8 1 chunk +32 lines, -0 lines 0 comments Download
A Source/core/paint/FilterPainter.cpp View 1 2 3 4 5 6 7 8 1 chunk +51 lines, -0 lines 0 comments Download
M Source/core/paint/LayerPainter.h View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/paint/LayerPainter.cpp View 1 2 3 4 5 6 7 11 chunks +14 lines, -29 lines 0 comments Download
M Source/core/rendering/FilterEffectRenderer.h View 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/rendering/FilterEffectRenderer.cpp View 2 chunks +0 lines, -23 lines 0 comments Download

Messages

Total messages: 20 (3 generated)
chrishtr
A very simple refactor, to follow the pattern in the referenced bug. Next I'm trying ...
6 years, 1 month ago (2014-11-11 01:01:00 UTC) #2
Stephen White
LGTM https://codereview.chromium.org/713823005/diff/1/Source/core/paint/FilterPainter.h File Source/core/paint/FilterPainter.h (right): https://codereview.chromium.org/713823005/diff/1/Source/core/paint/FilterPainter.h#newcode21 Source/core/paint/FilterPainter.h:21: RenderLayer& m_renderLayer; Since all we need out of ...
6 years, 1 month ago (2014-11-11 03:53:24 UTC) #3
mstensho (USE GERRIT)
https://codereview.chromium.org/713823005/diff/1/Source/core/paint/LayerPainter.cpp File Source/core/paint/LayerPainter.cpp (right): https://codereview.chromium.org/713823005/diff/1/Source/core/paint/LayerPainter.cpp#newcode352 Source/core/paint/LayerPainter.cpp:352: filterPainter.endFilterEffect(context); Can't you just have ~FilterPainter() do this job, ...
6 years, 1 month ago (2014-11-11 08:15:29 UTC) #5
chrishtr
On 2014/11/11 at 08:15:29, mstensho wrote: > https://codereview.chromium.org/713823005/diff/1/Source/core/paint/LayerPainter.cpp > File Source/core/paint/LayerPainter.cpp (right): > > https://codereview.chromium.org/713823005/diff/1/Source/core/paint/LayerPainter.cpp#newcode352 ...
6 years, 1 month ago (2014-11-11 21:18:55 UTC) #6
Stephen White
I guess I'm an old fuddy-duddy, but I'm not fond of this particular use of ...
6 years, 1 month ago (2014-11-11 21:29:17 UTC) #7
chrishtr
On 2014/11/11 at 21:29:17, senorblanco wrote: > I guess I'm an old fuddy-duddy, but I'm ...
6 years, 1 month ago (2014-11-11 21:32:14 UTC) #8
mstensho (USE GERRIT)
Only a couple of nits. Bonus point for getting rid of that uh-oh-I-shouldn't-have-set-that-clip-rectangle-after-all thing. :) ...
6 years, 1 month ago (2014-11-11 22:03:19 UTC) #9
Stephen White
On 2014/11/11 21:32:14, chrishtr wrote: > On 2014/11/11 at 21:29:17, senorblanco wrote: > > I ...
6 years, 1 month ago (2014-11-11 22:04:05 UTC) #10
mstensho (USE GERRIT)
On 2014/11/11 21:18:55, chrishtr wrote: > On 2014/11/11 at 08:15:29, mstensho wrote: > > > ...
6 years, 1 month ago (2014-11-11 22:05:48 UTC) #11
chrishtr
On 2014/11/11 at 22:04:05, senorblanco wrote: > On 2014/11/11 21:32:14, chrishtr wrote: > > On ...
6 years, 1 month ago (2014-11-11 22:14:04 UTC) #12
Stephen White
https://codereview.chromium.org/713823005/diff/100001/Source/core/paint/FilterPainter.h File Source/core/paint/FilterPainter.h (right): https://codereview.chromium.org/713823005/diff/100001/Source/core/paint/FilterPainter.h#newcode24 Source/core/paint/FilterPainter.h:24: void endFilterEffect(GraphicsContext*); This doesn't seem to be defined anywhere. ...
6 years, 1 month ago (2014-11-11 22:20:55 UTC) #13
chrishtr
https://codereview.chromium.org/713823005/diff/1/Source/core/paint/FilterPainter.h File Source/core/paint/FilterPainter.h (right): https://codereview.chromium.org/713823005/diff/1/Source/core/paint/FilterPainter.h#newcode21 Source/core/paint/FilterPainter.h:21: RenderLayer& m_renderLayer; On 2014/11/11 at 03:53:24, Stephen White wrote: ...
6 years, 1 month ago (2014-11-11 22:21:37 UTC) #14
chrishtr
https://codereview.chromium.org/713823005/diff/100001/Source/core/paint/FilterPainter.h File Source/core/paint/FilterPainter.h (right): https://codereview.chromium.org/713823005/diff/100001/Source/core/paint/FilterPainter.h#newcode24 Source/core/paint/FilterPainter.h:24: void endFilterEffect(GraphicsContext*); On 2014/11/11 22:20:55, Stephen White wrote: > ...
6 years, 1 month ago (2014-11-11 22:22:42 UTC) #15
Stephen White
On 2014/11/11 22:22:42, chrishtr wrote: > https://codereview.chromium.org/713823005/diff/100001/Source/core/paint/FilterPainter.h > File Source/core/paint/FilterPainter.h (right): > > https://codereview.chromium.org/713823005/diff/100001/Source/core/paint/FilterPainter.h#newcode24 > ...
6 years, 1 month ago (2014-11-11 22:41:51 UTC) #16
chrishtr
6 years, 1 month ago (2014-11-11 22:51:05 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/713823005/160001
6 years, 1 month ago (2014-11-12 00:03:14 UTC) #19
commit-bot: I haz the power
6 years, 1 month ago (2014-11-12 01:47:03 UTC) #20
Message was sent while issue was closed.
Committed patchset #9 (id:160001) as 185163

Powered by Google App Engine
This is Rietveld 408576698