OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:accumulatedOpacity
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.cpp
347
float GraphicsLayer::
accumulatedOpacity
() const
352
return m_opacity * (parent() ? parent()->
accumulatedOpacity
() : 1);
355
void GraphicsLayer::distributeOpacity(float
accumulatedOpacity
)
359
// Incoming
accumulatedOpacity
is the contribution from our parent(s). We mutiply this by our own
361
accumulatedOpacity
*= m_opacity;
366
children()[i]->distributeOpacity(
accumulatedOpacity
);
[
all
...]
GraphicsLayer.h
263
float
accumulatedOpacity
() const;
Completed in 302 milliseconds