• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/platform/graphics/

Lines Matching refs:GraphicsLayer

28 #include "GraphicsLayer.h"
47 typedef HashMap<const GraphicsLayer*, Vector<FloatRect>> RepaintMap;
74 GraphicsLayer::GraphicsLayer(GraphicsLayerClient& client)
109 GraphicsLayer::~GraphicsLayer()
115 void GraphicsLayer::willBeDestroyed()
130 void GraphicsLayer::setParent(GraphicsLayer* layer)
136 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const
138 for (GraphicsLayer* curr = parent(); curr; curr = curr->parent()) {
146 bool GraphicsLayer::setChildren(const Vector<GraphicsLayer*>& newChildren)
161 void GraphicsLayer::addChild(GraphicsLayer* childLayer)
172 void GraphicsLayer::addChildAtIndex(GraphicsLayer* childLayer, int index)
183 void GraphicsLayer::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling)
203 void GraphicsLayer::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling)
223 bool GraphicsLayer::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
244 void GraphicsLayer::removeAllChildren()
247 GraphicsLayer* curLayer = m_children[0];
253 void GraphicsLayer::removeFromParent()
268 void GraphicsLayer::setMaskLayer(GraphicsLayer* layer)
285 void GraphicsLayer::noteDeviceOrPageScaleFactorChangedIncludingDescendants()
295 const Vector<GraphicsLayer*>& childLayers = children();
301 void GraphicsLayer::setReplicatedByLayer(GraphicsLayer* layer)
315 void GraphicsLayer::setOffsetFromRenderer(const FloatSize& offset, ShouldSetNeedsDisplay shouldSetNeedsDisplay)
327 void GraphicsLayer::setSize(const FloatSize& size)
338 void GraphicsLayer::setBackgroundColor(const Color& color)
343 void GraphicsLayer::paintGraphicsLayerContents(GraphicsContext& context, const FloatRect& clip)
354 String GraphicsLayer::animationNameForTransition(AnimatedPropertyID property)
364 void GraphicsLayer::suspendAnimations(double)
368 void GraphicsLayer::resumeAnimations()
372 void GraphicsLayer::getDebugBorderInfo(Color& color, float& width) const
402 void GraphicsLayer::updateDebugIndicators()
413 void GraphicsLayer::setZPosition(float position)
418 float GraphicsLayer::accumulatedOpacity() const
426 void GraphicsLayer::distributeOpacity(float accumulatedOpacity)
449 int GraphicsLayer::validateFilterOperations(const KeyframeValueList& valueList)
492 int GraphicsLayer::validateTransformOperations(const KeyframeValueList& valueList, bool& hasBigRotation)
558 double GraphicsLayer::backingStoreMemoryEstimate() const
567 void GraphicsLayer::resetTrackedRepaints()
572 void GraphicsLayer::addRepaintRect(const FloatRect& repaintRect)
589 void GraphicsLayer::dumpLayer(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
592 ts << "(" << "GraphicsLayer";
595 ts << " " << static_cast<void*>(const_cast<GraphicsLayer*>(this));
605 static void dumpChildren(TextStream& ts, const Vector<GraphicsLayer*>& children, unsigned& totalChildCount, int indent, LayerTreeAsTextBehavior behavior)
619 void GraphicsLayer::dumpProperties(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
794 String GraphicsLayer::layerTreeAsText(LayerTreeAsTextBehavior behavior) const
805 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer)