Re: [PATCH 3/3] Implement animated transitions for zoom in/out.

2012-06-11 Thread Scott Moreau
> > +static void > > +weston_zoom_frame_z(struct weston_animation *animation, > > + struct weston_output *output, uint32_t msecs) > > +{ > > + if (animation->frame_counter == 0) > > + /* We need to discard the first frame since the > > + * animation was star

Re: [PATCH 3/3] Implement animated transitions for zoom in/out.

2012-06-11 Thread Kristian Høgsberg
On Fri, Jun 08, 2012 at 07:40:55PM -0600, Scott Moreau wrote: > --- > src/compositor.c | 92 + > src/compositor.h | 41 +-- > src/shell.c | 18 +-- > 3 files changed, 109 insertions(+), 42 deletions(-) > >

[PATCH 3/3] Implement animated transitions for zoom in/out.

2012-06-08 Thread Scott Moreau
--- src/compositor.c | 92 + src/compositor.h | 41 +-- src/shell.c | 18 +-- 3 files changed, 109 insertions(+), 42 deletions(-) diff --git a/src/compositor.c b/src/compositor.c index 3f54450..40ff17f 1006