Searched refs:blendToPassthrough (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFilterOperation.cpp70 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
75 if (blendToPassthrough)
106 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
111 if (blendToPassthrough)
152 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
159 if (blendToPassthrough)
175 PassRefPtr<FilterOperation> DropShadowFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
180 if (blendToPassthrough)
H A DFilterOperation.h77 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* /*from*/, double /*progress*/, bool /*blendToPassthrough*/ = false)
83 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* /*from*/, double /*progress*/, const LayoutSize&, bool /*blendToPassthrough*/ = false)
233 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false) override;
268 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false) override;
303 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false) override;
340 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false) override;
/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)
35 return toOp->blend(fromOp, progress, LayoutSize(size), blendToPassthrough);
37 return toOp->blend(fromOp, progress, blendToPassthrough);
/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DCSSPropertyAnimation.cpp165 static inline PassRefPtr<FilterOperation> blendFunc(const AnimationBase* anim, FilterOperation* fromOp, FilterOperation* toOp, double progress, bool blendToPassthrough = false)
170 return toOp->blend(fromOp, progress, size, blendToPassthrough);
172 return toOp->blend(fromOp, progress, blendToPassthrough);

Completed in 220 milliseconds