OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:layersNeedingPaintInvalidation
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
GraphicsLayerUpdater.h
47
void update(RenderLayer&, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
58
void updateRecursive(RenderLayer&, UpdateType, const UpdateContext&, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
CompositingLayerAssigner.h
43
void assign(RenderLayer* updateRoot, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
82
void assignLayersToBackingsInternal(RenderLayer*, SquashingState&, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
83
void assignLayersToBackingsForReflectionLayer(RenderLayer* reflectionLayer, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
86
void updateSquashingAssignment(RenderLayer*, SquashingState&, CompositingStateTransitionType, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
GraphicsLayerUpdater.cpp
85
void GraphicsLayerUpdater::update(RenderLayer& layer, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
88
updateRecursive(layer, DoNotForceUpdate, UpdateContext(),
layersNeedingPaintInvalidation
);
92
void GraphicsLayerUpdater::updateRecursive(RenderLayer& layer, UpdateType updateType, const UpdateContext& context, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
103
layersNeedingPaintInvalidation
.append(&layer);
110
mapping->updateGraphicsLayerGeometry(compositingContainer, context.compositingStackingContext(),
layersNeedingPaintInvalidation
);
122
updateRecursive(*child, updateType, childContext,
layersNeedingPaintInvalidation
);
CompositingLayerAssigner.cpp
51
void CompositingLayerAssigner::assign(RenderLayer* updateRoot, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
56
assignLayersToBackingsInternal(updateRoot, squashingState,
layersNeedingPaintInvalidation
);
179
Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
203
layersNeedingPaintInvalidation
.append(layer);
215
layersNeedingPaintInvalidation
.append(layer);
222
void CompositingLayerAssigner::assignLayersToBackingsForReflectionLayer(RenderLayer* reflectionLayer, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
227
layersNeedingPaintInvalidation
.append(reflectionLayer);
238
void CompositingLayerAssigner::assignLayersToBackingsInternal(RenderLayer* layer, SquashingState& squashingState, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
250
layersNeedingPaintInvalidation
.append(layer);
256
assignLayersToBackingsForReflectionLayer(layer->reflectionInfo()->reflectionLayer(),
layersNeedingPaintInvalidation
);
[
all
...]
CompositedLayerMapping.h
78
void updateGraphicsLayerGeometry(const RenderLayer* compositingContainer, const RenderLayer* compositingStackingContext, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
214
void updateSquashingLayerGeometry(const LayoutPoint& offsetFromCompositedAncestor, const IntPoint& graphicsLayerParentLocation, const RenderLayer& referenceLayer, Vector<GraphicsLayerPaintInfo>& layers, GraphicsLayer*, LayoutPoint* offsetFromTransformedAncestor, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
224
void updateReflectionLayerGeometry(Vector<RenderLayer*>&
layersNeedingPaintInvalidation
);
RenderLayerCompositor.cpp
330
Vector<RenderLayer*>
layersNeedingPaintInvalidation
;
343
layerAssigner.assign(updateRoot,
layersNeedingPaintInvalidation
);
361
updater.update(*updateRoot,
layersNeedingPaintInvalidation
);
395
for (unsigned i = 0; i <
layersNeedingPaintInvalidation
.size(); i++)
396
forceRecomputePaintInvalidationRectsIncludingNonCompositingDescendants(
layersNeedingPaintInvalidation
[i]->renderer());
[
all
...]
CompositedLayerMapping.cpp
565
Vector<GraphicsLayerPaintInfo>& layers, GraphicsLayer* squashingLayer, LayoutPoint* offsetFromTransformedAncestor, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
620
layersNeedingPaintInvalidation
.append(layers[i].renderLayer);
638
void CompositedLayerMapping::updateGraphicsLayerGeometry(const RenderLayer* compositingContainer, const RenderLayer* compositingStackingContext, Vector<RenderLayer*>&
layersNeedingPaintInvalidation
)
678
updateSquashingLayerGeometry(offsetFromCompositedAncestor, graphicsLayerParentLocation, m_owningLayer, m_squashedLayers, m_squashingLayer.get(), &m_squashingLayerOffsetFromTransformedAncestor,
layersNeedingPaintInvalidation
);
692
updateReflectionLayerGeometry(
layersNeedingPaintInvalidation
);
[
all
...]
Completed in 2466 milliseconds