• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/

Lines Matching defs:progress

70 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough)
76 return BasicColorMatrixFilterOperation::create(WebCore::blend(m_amount, passthroughAmount(), progress), m_type);
80 return BasicColorMatrixFilterOperation::create(WebCore::blend(fromAmount, m_amount, progress), m_type);
106 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough)
112 return BasicComponentTransferFilterOperation::create(WebCore::blend(m_amount, passthroughAmount(), progress), m_type);
116 return BasicComponentTransferFilterOperation::create(WebCore::blend(fromAmount, m_amount, progress), m_type);
152 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough)
160 return BlurFilterOperation::create(Length(lengthType).blend(m_stdDeviation, progress));
164 return BlurFilterOperation::create(m_stdDeviation.blend(fromLength, progress));
175 PassRefPtr<FilterOperation> DropShadowFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough)
182 WebCore::blend(m_location, IntPoint(), progress),
183 WebCore::blend(m_stdDeviation, 0, progress),
184 WebCore::blend(m_color, Color(Color::transparent), progress));
192 WebCore::blend(fromLocation, m_location, progress),
193 WebCore::blend(fromStdDeviation, m_stdDeviation, progress),
194 WebCore::blend(fromColor, m_color, progress));