Home
last modified time | relevance | path

Searched refs:willBeComposited (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderLayerCompositor.cpp739 bool willBeComposited = needsToBeComposited(layer); local
742 willBeComposited |= layer->shouldComposite();
755 if (willBeComposited) {
769 if (willBeComposited && layer->renderer()->isVideo())
796 … if (!willBeComposited && (childState.m_subtreeIsCompositing || childRequiresCompositing)) {
798 if (!willBeComposited && childState.m_subtreeIsCompositing) {
805 willBeComposited = true;
843 willBeComposited = true;
846 ASSERT(willBeComposited == needsToBeComposited(layer));
851 …if (!willBeComposited && canBeComposited(layer) && childState.m_subtreeIsCompositing && requiresCo…
[all …]
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2417623 ASSERT(willBeComposited == needsToBeComposited(layer)); on gmail.com
17627 … into compositing mode, then set willBeComposited to true. Also add another assertion to catch
17628 any other cases where the state of willBeComposited is mismanaged.
28069 Assertion failure (willBeComposited == needsToBeComposited(layer)) in
28074 with use of the local 'willBeComposited' variable, but that fails to take into
28086 that we only toggle 'willBeComposited' for layers that can.
35556 use willBeComposited rather than calling needsToBeComposited(), because it avoids
DChangeLog-2010-12-06101874 … on the fly inside updateCompositingLayers() now, the state of willBeComposited needs to be updated