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

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DValidatedCustomFilterOperation.cpp56 PassRefPtr<FilterOperation> ValidatedCustomFilterOperation::blend(const FilterOperation*, double progress, const LayoutSize& size, bool blendToPassthrough) argument
60 UNUSED_PARAM(blendToPassthrough);
H A DCustomFilterOperation.cpp56 PassRefPtr<FilterOperation> CustomFilterOperation::blend(const FilterOperation* from, double progress, const LayoutSize& size, bool blendToPassthrough) argument
61 if (blendToPassthrough || !from || !from->isSameType(*this))
H A DFilterOperation.cpp73 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
78 if (blendToPassthrough)
109 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
114 if (blendToPassthrough)
155 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
162 if (blendToPassthrough)
178 PassRefPtr<FilterOperation> DropShadowFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
183 if (blendToPassthrough)
H A DCustomFilterOperation.h67 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, const LayoutSize&, bool blendToPassthrough = false);
H A DFilterOperation.h89 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* /*from*/, double /*progress*/, bool /*blendToPassthrough*/ = false)
95 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* /*from*/, double /*progress*/, const LayoutSize&, bool /*blendToPassthrough*/ = false)
228 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
258 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
288 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
320 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
H A DValidatedCustomFilterOperation.h57 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, const LayoutSize&, bool blendToPassthrough = false);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsLayerAnimation.cpp32 static inline PassRefPtr<FilterOperation> blendFunc(FilterOperation* fromOp, FilterOperation* toOp, double progress, const IntSize& size, bool blendToPassthrough = false)
36 return toOp->blend(fromOp, progress, LayoutSize(size.width(), size.height()), blendToPassthrough);
38 return toOp->blend(fromOp, progress, blendToPassthrough);
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DCSSPropertyAnimation.cpp164 static inline PassRefPtr<FilterOperation> blendFunc(const AnimationBase* anim, FilterOperation* fromOp, FilterOperation* toOp, double progress, bool blendToPassthrough = false)
169 return toOp->blend(fromOp, progress, size, blendToPassthrough);
171 return toOp->blend(fromOp, progress, blendToPassthrough);

Completed in 74 milliseconds