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

/external/webkit/Source/WebCore/svg/
H A DSVGComponentTransferFunctionElement.cpp144 ComponentTransferFunction SVGComponentTransferFunctionElement::transferFunction() const function in class:WebCore::SVGComponentTransferFunctionElement
/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...]

Completed in 143 milliseconds