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

/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEComponentTransfer.cpp101 static void table(unsigned char* values, const ComponentTransferFunction& transferFunction) argument
103 const Vector<float>& tableValues = transferFunction.tableValues;
118 static void discrete(unsigned char* values, const ComponentTransferFunction& transferFunction) argument
120 const Vector<float>& tableValues = transferFunction.tableValues;
133 static void linear(unsigned char* values, const ComponentTransferFunction& transferFunction) argument
136 double val = transferFunction.slope * i + 255 * transferFunction.intercept;
142 static void gamma(unsigned char* values, const ComponentTransferFunction& transferFunction) argument
145 double exponent = transferFunction.exponent; // RCVT doesn't like passing a double and a float to pow, so promote this to double
146 double val = 255.0 * (transferFunction
169 ComponentTransferFunction transferFunction[] = {m_redFunc, m_greenFunc, m_blueFunc, m_alphaFunc}; local
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGFEComponentTransferElement.cpp95 red = static_cast<SVGFEFuncRElement*>(node)->transferFunction();
97 green = static_cast<SVGFEFuncGElement*>(node)->transferFunction();
99 blue = static_cast<SVGFEFuncBElement*>(node)->transferFunction();
101 alpha = static_cast<SVGFEFuncAElement*>(node)->transferFunction();
H A DSVGComponentTransferFunctionElement.h34 ComponentTransferFunction transferFunction() const;
H A DSVGComponentTransferFunctionElement.cpp144 ComponentTransferFunction SVGComponentTransferFunctionElement::transferFunction() const function in class:WebCore::SVGComponentTransferFunctionElement

Completed in 366 milliseconds