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

Side by Side Diff: sky/engine/core/rendering/RenderLayerRepainter.cpp

Issue 795843008: Delete RenderLayerRepainter. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/rendering/RenderLayerRepainter.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 *
6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com>
11 * Roland Mainz <roland.mainz@informatik.med.uni-giessen.de>
12 * Josh Soref <timeless@mac.com>
13 * Boris Zbarsky <bzbarsky@mit.edu>
14 *
15 * This library is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU Lesser General Public
17 * License as published by the Free Software Foundation; either
18 * version 2.1 of the License, or (at your option) any later version.
19 *
20 * This library is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * Lesser General Public License for more details.
24 *
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US A
28 *
29 * Alternatively, the contents of this file may be used under the terms
30 * of either the Mozilla Public License Version 1.1, found at
31 * http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public
32 * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html
33 * (the "GPL"), in which case the provisions of the MPL or the GPL are
34 * applicable instead of those above. If you wish to allow use of your
35 * version of this file only under the terms of one of those two
36 * licenses (the MPL or the GPL) and not to allow others to use your
37 * version of this file under the LGPL, indicate your decision by
38 * deletingthe provisions above and replace them with the notice and
39 * other provisions required by the MPL or the GPL, as the case may be.
40 * If you do not delete the provisions above, a recipient may use your
41 * version of this file under any of the LGPL, the MPL or the GPL.
42 */
43
44 #include "sky/engine/config.h"
45 #include "sky/engine/core/rendering/RenderLayerRepainter.h"
46
47 #include "sky/engine/core/rendering/FilterEffectRenderer.h"
48 #include "sky/engine/core/rendering/RenderLayer.h"
49 #include "sky/engine/core/rendering/RenderView.h"
50
51 namespace blink {
52
53 RenderLayerRepainter::RenderLayerRepainter(RenderLayerModelObject& renderer)
54 : m_renderer(renderer)
55 {
56 }
57
58 void RenderLayerRepainter::computePaintInvalidationRectsIncludingNonCompositingD escendants()
59 {
60 // FIXME: boundsRectForPaintInvalidation() has to walk up the parent chain
61 // for every layer to compute the rects. We should make this more efficient.
62 // FIXME: it's wrong to call this when layout is not up-to-date, which we do .
63 m_renderer.setPreviousPaintInvalidationRect(m_renderer.boundsRectForPaintInv alidation(m_renderer.containerForPaintInvalidation()));
64 // FIXME: We are only updating the paint invalidation bounds but not
65 // the positionFromPaintInvalidationContainer. This means that we may
66 // forcing a full invaliation of the new position. Is this really correct?
67
68 for (RenderLayer* layer = m_renderer.layer()->firstChild(); layer; layer = l ayer->nextSibling()) {
69 layer->paintInvalidator().computePaintInvalidationRectsIncludingNonCompo sitingDescendants();
70 }
71 }
72
73 void RenderLayerRepainter::setFilterBackendNeedsPaintInvalidationInRect(const La youtRect& rect)
74 {
75 if (rect.isEmpty())
76 return;
77 LayoutRect rectForPaintInvalidation = rect;
78
79 ASSERT(m_renderer.layer()->filterInfo());
80
81 RenderLayer* parentLayer = enclosingFilterPaintInvalidationLayer();
82 ASSERT(parentLayer);
83 FloatQuad paintInvalidationQuad(rectForPaintInvalidation);
84 LayoutRect parentLayerRect = m_renderer.localToContainerQuad(paintInvalidati onQuad, parentLayer->renderer()).enclosingBoundingBox();
85
86 if (parentLayerRect.isEmpty())
87 return;
88
89 if (parentLayer->paintsWithFilters()) {
90 parentLayer->paintInvalidator().setFilterBackendNeedsPaintInvalidationIn Rect(parentLayerRect);
91 return;
92 }
93
94 if (parentLayer->isRootLayer()) {
95 RenderView* view = toRenderView(parentLayer->renderer());
96 view->invalidatePaintForRectangle(parentLayerRect);
97 return;
98 }
99
100 ASSERT_NOT_REACHED();
101 }
102
103 RenderLayer* RenderLayerRepainter::enclosingFilterPaintInvalidationLayer() const
104 {
105 for (const RenderLayer* curr = m_renderer.layer(); curr; curr = curr->parent ()) {
106 if ((curr != m_renderer.layer() && curr->requiresFullLayerImageForFilter s()) || curr->isRootLayer())
107 return const_cast<RenderLayer*>(curr);
108 }
109 return 0;
110 }
111
112 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderLayerRepainter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698