Home
last modified time | relevance | path

Searched refs:resultX (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp926 void TransformationMatrix::multVecMatrix(double x, double y, double& resultX, double& resultY) const in multVecMatrix() argument
928 resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0]; in multVecMatrix()
932 resultX /= w; in multVecMatrix()
937 void TransformationMatrix::multVecMatrix(double x, double y, double z, double& resultX, double& res… in multVecMatrix() argument
939 resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0] + z * m_matrix[2][0]; in multVecMatrix()
944 resultX /= w; in multVecMatrix()