HomeSort by relevance Sort by last modified time
    Searched refs:fSpeed0 (Results 1 - 4 of 4) sorted by null

  /external/skia/gpu/src/
FlingState.cpp 61 fSpeed0 = SkPoint::Normalize(&fDirection);
62 fSpeed0 = pin_max_fling(fSpeed0);
66 // printf("---- speed %g dir %g %g\n", fSpeed0, fDirection.fX, fDirection.fY);
78 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
83 float dist = (fSpeed0 - speed) / K0;
  /external/skia/gpu/include/
FlingState.h 37 SkScalar fSpeed0;
  /external/skia/include/views/
SkTouchGesture.h 18 SkScalar fSpeed0;
  /external/skia/src/views/
SkTouchGesture.cpp 61 fSpeed0 = SkPoint::Normalize(&fDirection);
62 fSpeed0 = pin_max_fling(fSpeed0);
66 // printf("---- speed %g dir %g %g\n", fSpeed0, fDirection.fX, fDirection.fY);
78 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
83 float dist = (fSpeed0 - speed) / K0;

Completed in 98 milliseconds