Re: [PATCH weston] animation: Use fixed spring in weston_view_animation_run

2014-04-08 Thread Daiki Ueno
Kristian Høgsberg writes: > On Tue, Apr 08, 2014 at 03:54:43PM +0900, Daiki Ueno wrote: >> From: Daiki Ueno >> >> Since commit 3a869019, weston_view_animation_run initializes the >> spring with an arbitrary value range. This should be fine if the >> range is narrow enough, but if the range is

Re: [PATCH weston] animation: Use fixed spring in weston_view_animation_run

2014-04-08 Thread Kristian Høgsberg
On Tue, Apr 08, 2014 at 03:54:43PM +0900, Daiki Ueno wrote: > From: Daiki Ueno > > Since commit 3a869019, weston_view_animation_run initializes the > spring with an arbitrary value range. This should be fine if the > range is narrow enough, but if the range is wide, the spring functions > conver

[PATCH weston] animation: Use fixed spring in weston_view_animation_run

2014-04-07 Thread Daiki Ueno
From: Daiki Ueno Since commit 3a869019, weston_view_animation_run initializes the spring with an arbitrary value range. This should be fine if the range is narrow enough, but if the range is wide, the spring functions converge too slowly, since the step is hard-coded. This patch partially rever