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

Side by Side Diff: Source/core/paint/FieldsetPainter.cpp

Issue 1220583004: Refactor DrawingRecorders to check for cached drawings earlier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix some !'s and &&'s. De Morgan would be proud. Created 5 years, 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/paint/FieldsetPainter.h" 6 #include "core/paint/FieldsetPainter.h"
7 7
8 #include "core/layout/LayoutFieldset.h" 8 #include "core/layout/LayoutFieldset.h"
9 #include "core/paint/BoxDecorationData.h" 9 #include "core/paint/BoxDecorationData.h"
10 #include "core/paint/BoxPainter.h" 10 #include "core/paint/BoxPainter.h"
11 #include "core/paint/LayoutObjectDrawingRecorder.h" 11 #include "core/paint/LayoutObjectDrawingRecorder.h"
12 #include "core/paint/PaintInfo.h" 12 #include "core/paint/PaintInfo.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 void FieldsetPainter::paintBoxDecorationBackground(const PaintInfo& paintInfo, c onst LayoutPoint& paintOffset) 16 void FieldsetPainter::paintBoxDecorationBackground(const PaintInfo& paintInfo, c onst LayoutPoint& paintOffset)
17 { 17 {
18 if (!paintInfo.shouldPaintWithinRoot(&m_layoutFieldset)) 18 if (!paintInfo.shouldPaintWithinRoot(&m_layoutFieldset))
19 return; 19 return;
20 20
21 LayoutRect paintRect(paintOffset, m_layoutFieldset.size()); 21 LayoutRect paintRect(paintOffset, m_layoutFieldset.size());
22 LayoutBox* legend = m_layoutFieldset.findInFlowLegend(); 22 LayoutBox* legend = m_layoutFieldset.findInFlowLegend();
23 if (!legend) 23 if (!legend)
24 return BoxPainter(m_layoutFieldset).paintBoxDecorationBackground(paintIn fo, paintOffset); 24 return BoxPainter(m_layoutFieldset).paintBoxDecorationBackground(paintIn fo, paintOffset);
25 25
26 if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(*paintInfo.conte xt, m_layoutFieldset, paintInfo.phase))
27 return;
28
26 // FIXME: We need to work with "rl" and "bt" block flow directions. In thos e 29 // FIXME: We need to work with "rl" and "bt" block flow directions. In thos e
27 // cases the legend is embedded in the right and bottom borders respectively . 30 // cases the legend is embedded in the right and bottom borders respectively .
28 // https://bugs.webkit.org/show_bug.cgi?id=47236 31 // https://bugs.webkit.org/show_bug.cgi?id=47236
29 if (m_layoutFieldset.style()->isHorizontalWritingMode()) { 32 if (m_layoutFieldset.style()->isHorizontalWritingMode()) {
30 LayoutUnit yOff = (legend->location().y() > 0) ? LayoutUnit() : (legend- >size().height() - m_layoutFieldset.borderTop()) / 2; 33 LayoutUnit yOff = (legend->location().y() > 0) ? LayoutUnit() : (legend- >size().height() - m_layoutFieldset.borderTop()) / 2;
31 paintRect.setHeight(paintRect.height() - yOff); 34 paintRect.setHeight(paintRect.height() - yOff);
32 paintRect.setY(paintRect.y() + yOff); 35 paintRect.setY(paintRect.y() + yOff);
33 } else { 36 } else {
34 LayoutUnit xOff = (legend->location().x() > 0) ? LayoutUnit() : (legend- >size().width() - m_layoutFieldset.borderLeft()) / 2; 37 LayoutUnit xOff = (legend->location().x() > 0) ? LayoutUnit() : (legend- >size().width() - m_layoutFieldset.borderLeft()) / 2;
35 paintRect.setWidth(paintRect.width() - xOff); 38 paintRect.setWidth(paintRect.width() - xOff);
36 paintRect.setX(paintRect.x() + xOff); 39 paintRect.setX(paintRect.x() + xOff);
37 } 40 }
38 41
39 LayoutObjectDrawingRecorder recorder(*paintInfo.context, m_layoutFieldset, p aintInfo.phase, pixelSnappedIntRect(paintRect)); 42 LayoutObjectDrawingRecorder recorder(*paintInfo.context, m_layoutFieldset, p aintInfo.phase, pixelSnappedIntRect(paintRect));
40 if (recorder.canUseCachedDrawing())
41 return;
42
43 BoxDecorationData boxDecorationData(m_layoutFieldset); 43 BoxDecorationData boxDecorationData(m_layoutFieldset);
44 44
45 if (boxDecorationData.bleedAvoidance == BackgroundBleedNone) 45 if (boxDecorationData.bleedAvoidance == BackgroundBleedNone)
46 BoxPainter::paintBoxShadow(paintInfo, paintRect, m_layoutFieldset.styleR ef(), Normal); 46 BoxPainter::paintBoxShadow(paintInfo, paintRect, m_layoutFieldset.styleR ef(), Normal);
47 BoxPainter(m_layoutFieldset).paintFillLayers(paintInfo, boxDecorationData.ba ckgroundColor, m_layoutFieldset.style()->backgroundLayers(), paintRect); 47 BoxPainter(m_layoutFieldset).paintFillLayers(paintInfo, boxDecorationData.ba ckgroundColor, m_layoutFieldset.style()->backgroundLayers(), paintRect);
48 BoxPainter::paintBoxShadow(paintInfo, paintRect, m_layoutFieldset.styleRef() , Inset); 48 BoxPainter::paintBoxShadow(paintInfo, paintRect, m_layoutFieldset.styleRef() , Inset);
49 49
50 if (!boxDecorationData.hasBorderDecoration) 50 if (!boxDecorationData.hasBorderDecoration)
51 return; 51 return;
52 52
(...skipping 20 matching lines...) Expand all
73 void FieldsetPainter::paintMask(const PaintInfo& paintInfo, const LayoutPoint& p aintOffset) 73 void FieldsetPainter::paintMask(const PaintInfo& paintInfo, const LayoutPoint& p aintOffset)
74 { 74 {
75 if (m_layoutFieldset.style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseMask) 75 if (m_layoutFieldset.style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseMask)
76 return; 76 return;
77 77
78 LayoutRect paintRect = LayoutRect(paintOffset, m_layoutFieldset.size()); 78 LayoutRect paintRect = LayoutRect(paintOffset, m_layoutFieldset.size());
79 LayoutBox* legend = m_layoutFieldset.findInFlowLegend(); 79 LayoutBox* legend = m_layoutFieldset.findInFlowLegend();
80 if (!legend) 80 if (!legend)
81 return BoxPainter(m_layoutFieldset).paintMask(paintInfo, paintOffset); 81 return BoxPainter(m_layoutFieldset).paintMask(paintInfo, paintOffset);
82 82
83 if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(*paintInfo.conte xt, m_layoutFieldset, paintInfo.phase))
84 return;
85
83 // FIXME: We need to work with "rl" and "bt" block flow directions. In thos e 86 // FIXME: We need to work with "rl" and "bt" block flow directions. In thos e
84 // cases the legend is embedded in the right and bottom borders respectively . 87 // cases the legend is embedded in the right and bottom borders respectively .
85 // https://bugs.webkit.org/show_bug.cgi?id=47236 88 // https://bugs.webkit.org/show_bug.cgi?id=47236
86 if (m_layoutFieldset.style()->isHorizontalWritingMode()) { 89 if (m_layoutFieldset.style()->isHorizontalWritingMode()) {
87 LayoutUnit yOff = (legend->location().y() > 0) ? LayoutUnit() : (legend- >size().height() - m_layoutFieldset.borderTop()) / 2; 90 LayoutUnit yOff = (legend->location().y() > 0) ? LayoutUnit() : (legend- >size().height() - m_layoutFieldset.borderTop()) / 2;
88 paintRect.expand(0, -yOff); 91 paintRect.expand(0, -yOff);
89 paintRect.move(0, yOff); 92 paintRect.move(0, yOff);
90 } else { 93 } else {
91 LayoutUnit xOff = (legend->location().x() > 0) ? LayoutUnit() : (legend- >size().width() - m_layoutFieldset.borderLeft()) / 2; 94 LayoutUnit xOff = (legend->location().x() > 0) ? LayoutUnit() : (legend- >size().width() - m_layoutFieldset.borderLeft()) / 2;
92 paintRect.expand(-xOff, 0); 95 paintRect.expand(-xOff, 0);
93 paintRect.move(xOff, 0); 96 paintRect.move(xOff, 0);
94 } 97 }
95 98
96 LayoutObjectDrawingRecorder recorder(*paintInfo.context, m_layoutFieldset, p aintInfo.phase, paintRect); 99 LayoutObjectDrawingRecorder recorder(*paintInfo.context, m_layoutFieldset, p aintInfo.phase, paintRect);
97 if (recorder.canUseCachedDrawing())
98 return;
99
100 BoxPainter(m_layoutFieldset).paintMaskImages(paintInfo, paintRect); 100 BoxPainter(m_layoutFieldset).paintMaskImages(paintInfo, paintRect);
101 } 101 }
102 102
103 } // namespace blink 103 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698