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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEColorMatrix.h40 class PLATFORM_EXPORT FEColorMatrix : public FilterEffect { class in namespace:blink
42 static PassRefPtr<FEColorMatrix> create(Filter*, ColorMatrixType, const Vector<float>&);
58 FEColorMatrix(Filter*, ColorMatrixType, const Vector<float>&);
H A DFEColorMatrix.cpp25 #include "platform/graphics/filters/FEColorMatrix.h"
38 FEColorMatrix::FEColorMatrix(Filter* filter, ColorMatrixType type, const Vector<float>& values) function in class:blink::FEColorMatrix
45 PassRefPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, ColorMatrixType type, const Vector<float>& values)
47 return adoptRef(new FEColorMatrix(filter, type, values));
50 ColorMatrixType FEColorMatrix::type() const
55 bool FEColorMatrix::setType(ColorMatrixType type)
63 const Vector<float>& FEColorMatrix::values() const
68 bool FEColorMatrix
[all...]

Completed in 79 milliseconds