Searched refs:blendFunc (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DCSSPropertyAnimation.cpp61 static inline int blendFunc(const AnimationBase*, int from, int to, double progress) function in namespace:WebCore
66 static inline double blendFunc(const AnimationBase*, double from, double to, double progress) function in namespace:WebCore
71 static inline float blendFunc(const AnimationBase*, float from, float to, double progress) function in namespace:WebCore
76 static inline Color blendFunc(const AnimationBase*, const Color& from, const Color& to, double progress) function in namespace:WebCore
81 static inline Length blendFunc(const AnimationBase*, const Length& from, const Length& to, double progress) function in namespace:WebCore
86 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress) function in namespace:WebCore
88 return LengthSize(blendFunc(anim, from.width(), to.width(), progress),
89 blendFunc(anim, from.height(), to.height(), progress));
92 static inline ShadowStyle blendFunc(const AnimationBase* anim, ShadowStyle from, ShadowStyle to, double progress) function in namespace:WebCore
99 double result = blendFunc(ani
103 static inline std::unique_ptr<ShadowData> blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress) function in namespace:WebCore
117 static inline TransformOperations blendFunc(const AnimationBase* anim, const TransformOperations& from, const TransformOperations& to, double progress) function in namespace:WebCore
124 static inline PassRefPtr<ClipPathOperation> blendFunc(const AnimationBase*, ClipPathOperation* from, ClipPathOperation* to, double progress) function in namespace:WebCore
143 static inline PassRefPtr<ShapeValue> blendFunc(const AnimationBase*, ShapeValue* from, ShapeValue* to, double progress) function in namespace:WebCore
165 static inline PassRefPtr<FilterOperation> blendFunc(const AnimationBase* anim, FilterOperation* fromOp, FilterOperation* toOp, double progress, bool blendToPassthrough = false) function in namespace:WebCore
198 static inline FilterOperations blendFunc(const AnimationBase* anim, const FilterOperations& from, const FilterOperations& to, double progress) function in namespace:WebCore
229 static inline EVisibility blendFunc(const AnimationBase* anim, EVisibility from, EVisibility to, double progress) function in namespace:WebCore
241 static inline LengthBox blendFunc(const AnimationBase* anim, const LengthBox& from, const LengthBox& to, double progress) function in namespace:WebCore
250 static inline SVGLength blendFunc(const AnimationBase*, const SVGLength& from, const SVGLength& to, double progress) function in namespace:WebCore
254 static inline Vector<SVGLength> blendFunc(const AnimationBase*, const Vector<SVGLength>& from, const Vector<SVGLength>& to, double progress) function in namespace:WebCore
292 static inline PassRefPtr<StyleImage> blendFunc(const AnimationBase* anim, StyleImage* from, StyleImage* to, double progress) function in namespace:WebCore
350 static inline NinePieceImage blendFunc(const AnimationBase* anim, const NinePieceImage& from, const NinePieceImage& to, double progress) function in namespace:WebCore
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSCrossfadeValue.cpp43 static inline double blendFunc(double from, double to, double progress) function in namespace:WebCore
203 crossfadeValue->setPercentage(CSSPrimitiveValue::create(blendFunc(fromPercentage, toPercentage, progress), CSSPrimitiveValue::CSS_NUMBER));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsLayerAnimation.cpp31 static inline PassRefPtr<FilterOperation> blendFunc(FilterOperation* fromOp, FilterOperation* toOp, double progress, const FloatSize& size, bool blendToPassthrough = false) function in namespace:WebCore
62 RefPtr<FilterOperation> blendedOp = toOp ? blendFunc(fromOp.get(), toOp.get(), progress, boxSize) : (fromOp ? blendFunc(0, fromOp.get(), progress, boxSize, true) : 0);
H A DGraphicsContext3D.h687 void blendFunc(GC3Denum sfactor, GC3Denum dfactor);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperGL.cpp648 m_context3D->blendFunc(GraphicsContext3D::ZERO, GraphicsContext3D::SRC_ALPHA);
652 m_context3D->blendFunc(GraphicsContext3D::ONE, GraphicsContext3D::ONE_MINUS_SRC_ALPHA);
664 m_context3D->blendFunc(GraphicsContext3D::ONE, GraphicsContext3D::ONE_MINUS_SRC_ALPHA);
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLRenderingContext.idl475 [StrictTypeChecking] void blendFunc(GLenum sfactor, GLenum dfactor);
H A DWebGLRenderingContext.h111 void blendFunc(GC3Denum sfactor, GC3Denum dfactor);
H A DWebGLRenderingContext.cpp1100 void WebGLRenderingContext::blendFunc(GC3Denum sfactor, GC3Denum dfactor) function in class:WebCore::__anon5641::WebGLRenderingContext
1102 if (isContextLostOrPending() || !validateBlendFuncFactors("blendFunc", sfactor, dfactor))
1104 m_context->blendFunc(sfactor, dfactor);
1110 if (isContextLostOrPending() || !validateBlendFuncFactors("blendFunc", srcRGB, dstRGB))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/opengl/
H A DGraphicsContext3DOpenGLCommon.cpp444 void GraphicsContext3D::blendFunc(GC3Denum sfactor, GC3Denum dfactor) function in class:WebCore::GraphicsContext3D

Completed in 199 milliseconds