Bug 1317209 - Part 2: Implement interpolate FFI. r=manishearth

This commit is contained in:
Boris Chiou 2017-01-24 15:22:52 +08:00
parent 4f0791a94b
commit 1f1c67f485
2 changed files with 23 additions and 1 deletions

View file

@ -1220,6 +1220,12 @@ extern "C" {
ServoComputedValuesBorrowed)
-> ServoComputedValuesStrong;
}
extern "C" {
pub fn Servo_AnimationValues_Interpolate(from: RawServoAnimationValueBorrowed,
to: RawServoAnimationValueBorrowed,
progress: f64)
-> RawServoAnimationValueStrong;
}
extern "C" {
pub fn Servo_AnimationValues_Uncompute(value: RawServoAnimationValueBorrowedListBorrowed)
-> RawServoDeclarationBlockStrong;