Displaying 2 results from an estimated 2 matches for "no_hscale".
2007 Oct 11
0
10 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/swfdec_buffer.c libswfdec/swfdec_movie_as_drawing.c test/image test/sound
...attern = g_object_ref (sstroke->pattern);
+ dstroke->start_cap = sstroke->start_cap;
+ dstroke->end_cap = sstroke->end_cap;
+ dstroke->join = sstroke->join;
+ dstroke->miter_limit = sstroke->miter_limit;
+ dstroke->no_vscale = sstroke->no_vscale;
+ dstroke->no_hscale = sstroke->no_hscale;
+
+ return SWFDEC_DRAW (dstroke);
+}
+
+static void
+swfdec_sprite_movie_end_fill (SwfdecMovie *movie, SwfdecDraw *new)
+{
+ /* FIXME: need to cairo_close_path()? */
+ movie->draw_fill = new;
+ if (new == NULL)
+ return;
+
+ movie->draws = g_slist_append (movi...
2007 Apr 16
0
7 commits - libswfdec/swfdec_codec_gst.c libswfdec/swfdec_font.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_pattern.c libswfdec/swfdec_pattern.h libswfdec/swfdec_shape.c libswfdec/swfdec_shape.h libswfdec/swfdec_sprite.c
...>start_cap = swfdec_line_cap_get (tmp);
+ tmp = swfdec_bits_getbits (bits, 2);
+ SWFDEC_LOG (" line join: %u", tmp);
+ stroke->join = swfdec_line_join_get (tmp);
+ has_pattern = swfdec_bits_getbit (bits);
+ SWFDEC_LOG (" has pattern: %d", has_pattern);
+ stroke->no_hscale = swfdec_bits_getbit (bits);
+ SWFDEC_LOG (" no hscale: %d", stroke->no_hscale);
+ stroke->no_vscale = swfdec_bits_getbit (bits);
+ SWFDEC_LOG (" no vscale: %d", stroke->no_vscale);
+ stroke->align_pixel = swfdec_bits_getbit (bits);
+ SWFDEC_LOG (" align...