Searched defs:requiresPMColorValidation (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.cpp388 PassRefPtr<SkImageFilter> FEComposite::createImageFilterInternal(SkiaImageFilterBuilder* builder, bool requiresPMColorValidation) argument
395 mode = adoptRef(SkArithmeticMode::Create(SkFloatToScalar(m_k1), SkFloatToScalar(m_k2), SkFloatToScalar(m_k3), SkFloatToScalar(m_k4), requiresPMColorValidation));
H A DFilterEffect.cpp579 static int getImageFilterIndex(ColorSpace colorSpace, bool requiresPMColorValidation) argument
586 return (colorSpace == ColorSpaceLinearRGB ? 0x1 : 0x0) | (requiresPMColorValidation ? 0x2 : 0x0);
589 SkImageFilter* FilterEffect::getImageFilter(ColorSpace colorSpace, bool requiresPMColorValidation) const
591 int index = getImageFilterIndex(colorSpace, requiresPMColorValidation);
595 void FilterEffect::setImageFilter(ColorSpace colorSpace, bool requiresPMColorValidation, PassRefPtr<SkImageFilter> imageFilter) argument
597 int index = getImageFilterIndex(colorSpace, requiresPMColorValidation);

Completed in 1235 milliseconds