HomeSort by relevance Sort by last modified time
    Searched defs:accumulatedOpacity (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.cpp 275 float GraphicsLayer::accumulatedOpacity() const
280 return m_opacity * (parent() ? parent()->accumulatedOpacity() : 1);
283 void GraphicsLayer::distributeOpacity(float accumulatedOpacity)
287 // Incoming accumulatedOpacity is the contribution from our parent(s). We mutiply this by our own
289 accumulatedOpacity *= m_opacity;
291 setOpacityInternal(accumulatedOpacity);
296 children()[i]->distributeOpacity(accumulatedOpacity);
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 824 float GraphicsLayerQt::accumulatedOpacity() const
    [all...]

Completed in 52 milliseconds