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

  /external/webkit/WebCore/svg/
SVGPathSegList.cpp 147 static inline float blendFunc(float from, float to, float progress)
153 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress))
156 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress), \
157 blendFunc(static_cast<class*>(from)->attr2(), static_cast<class*>(to)->attr2(), progress))
160 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress), \
161 blendFunc(static_cast<class*>(from)->attr2(), static_cast<class*>(to)->attr2(), progress), \
162 blendFunc(static_cast<class*>(from)->attr3(), static_cast<class*>(to)->attr3(), progress), \
163 blendFunc(static_cast<class*>(from)->attr4(), static_cast<class*>(to)->attr4(), progress))
166 class::create(blendFunc(static_cast<class*>(from)->attr1(), static_cast<class*>(to)->attr1(), progress), \
167 blendFunc(static_cast<class*>(from)->attr2(), static_cast<class*>(to)->attr2(), progress),
    [all...]
  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 74 static inline int blendFunc(const AnimationBase*, int from, int to, double progress)
79 static inline double blendFunc(const AnimationBase*, double from, double to, double progress)
84 static inline float blendFunc(const AnimationBase*, float from, float to, double progress)
89 static inline Color blendFunc(const AnimationBase* anim, const Color& from, const Color& to, double progress)
100 Color premultBlended(blendFunc(anim, premultFrom.red(), premultTo.red(), progress),
101 blendFunc(anim, premultFrom.green(), premultTo.green(), progress),
102 blendFunc(anim, premultFrom.blue(), premultTo.blue(), progress),
103 blendFunc(anim, premultFrom.alpha(), premultTo.alpha(), progress));
108 static inline Length blendFunc(const AnimationBase*, const Length& from, const Length& to, double progress)
113 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress
    [all...]
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.cpp 290 void WebGLRenderingContext::blendFunc(unsigned long sfactor, unsigned long dfactor)
292 m_context->blendFunc(sfactor, dfactor);
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContext3DMac.cpp 306 void GraphicsContext3D::blendFunc(unsigned long sfactor, unsigned long dfactor)
    [all...]
  /system/core/include/pixelflinger/
pixelflinger.h 246 void (*blendFunc)(void* c, GGLenum src, GGLenum dst);

Completed in 715 milliseconds