Lines Matching refs:deltaY
47 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { in move() argument
48 if ((deltaX == nullptr || *deltaX == 0) && (deltaY == nullptr || *deltaY == 0)) { in move()
62 if (deltaY) { in move()
63 mRawPositionY += *deltaY; in move()
67 scaleDeltas(deltaX, deltaY); in move()
81 void SimpleVelocityControl::scaleDeltas(float* deltaX, float* deltaY) { in scaleDeltas() argument
115 if (deltaY != nullptr) { in scaleDeltas()
116 *deltaY *= scale; in scaleDeltas()
149 void CurvedVelocityControl::scaleDeltas(float* deltaX, float* deltaY) { in scaleDeltas() argument
183 if (deltaY != nullptr) { in scaleDeltas()
184 *deltaY *= ratio; in scaleDeltas()