HomeSort by relevance Sort by last modified time
    Searched refs:fromColor (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
ColorDistance.cpp 35 ColorDistance::ColorDistance(const Color& fromColor, const Color& toColor)
36 : m_redDiff(toColor.red() - fromColor.red())
37 , m_greenDiff(toColor.green() - fromColor.green())
38 , m_blueDiff(toColor.blue() - fromColor.blue())
ColorDistance.h 30 ColorDistance(const Color& fromColor, const Color& toColor);
SVGAnimatedColor.cpp 70 Color fromColor = m_animationElement->animationMode() == ToAnimation ? animated->color() : from->color();
76 m_animationElement->adjustForInheritance<Color>(parseColorFromString, m_animationElement->fromPropertyValueType(), fromColor, m_contextElement);
81 adjustForCurrentColor(m_contextElement, fromColor);
86 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.red(), toColor.red(), toAtEndOfDurationColor.red(), animatedRed);
89 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.green(), toColor.green(), toAtEndOfDurationColor.green(), animatedGreen);
92 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.blue(), toColor.blue(), toAtEndOfDurationColor.blue(), animatedBlue);
95 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromColor.alpha(), toColor.alpha(), toAtEndOfDurationColor.alpha(), animatedAlpha);
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 73 Color fromColor = animation->renderer()->resolveColor(from);
75 return blend(fromColor, toColor, progress);
112 Color fromColor = anim->renderer()->resolveColor(from->color());
119 blend(fromColor, toColor, progress));
667 StyleColor fromColor = (a->*m_getter)();
670 if (!fromColor.isValid() && !toColor.isValid())
673 if (!fromColor.isValid())
674 fromColor = a->color();
678 return fromColor == toColor;
683 StyleColor fromColor = (a->*m_getter)()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FilterOperation.cpp 143 Color fromColor = fromOp ? fromOp->color() : Color(Color::transparent);
148 WebCore::blend(fromColor, m_color, progress), m_type);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 41 public void fromColor(ColorRGBA colorRGBA) {
TextureHelper.java 269 resultPixel.fromColor(diffuseColor);

Completed in 2545 milliseconds