search for: cee0ba6

Displaying 2 results from an estimated 2 matches for "cee0ba6".

Did you mean: 9e20ba6
2007 Jun 13
1
Branch 'as' - libswfdec/swfdec_movie.c
...bb34710e971ab143aac62300907486d3 (from a6c380467a9cb20fd2d151d74603f1de5637cabf) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 13 16:34:43 2007 +0200 fix matrix calculation - 3 lines got lost in the reorg diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index cee0ba6..53ca79e 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -951,6 +951,9 @@ swfdec_movie_set_static_properties (Swfd } if (transform) { movie->original_transform = *transform; + movie->xscale = swfdec_matrix_get_xscale (&movie->original_transform); +...
2007 Jun 13
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_sprite.c
...swfdec_stroke_paint (vec->pattern, cr, path, trans, movie->content->ratio); + swfdec_stroke_paint (vec->pattern, cr, path, trans, morph->ratio); } } else { cairo_append_path (cr, path); diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index 908e0ef..cee0ba6 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -41,20 +41,19 @@ /*** MOVIE ***/ -static const SwfdecContent default_content = SWFDEC_CONTENT_DEFAULT; - G_DEFINE_ABSTRACT_TYPE (SwfdecMovie, swfdec_movie, SWFDEC_TYPE_AS_OBJECT) static void swfdec_movie_init (SwfdecM...