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

  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 287 float GraphicsLayer::accumulatedOpacity() const
292 return m_opacity * (parent() ? parent()->accumulatedOpacity() : 1);
295 void GraphicsLayer::distributeOpacity(float accumulatedOpacity)
299 // Incoming accumulatedOpacity is the contribution from our parent(s). We mutiply this by our own
301 accumulatedOpacity *= m_opacity;
303 setOpacityInternal(accumulatedOpacity);
308 children()[i]->distributeOpacity(accumulatedOpacity);
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]

Completed in 38 milliseconds