search for: swfdec_stroke_do_parse_extend

Displaying 3 results from an estimated 3 matches for "swfdec_stroke_do_parse_extend".

2008 May 03
1
[Bug 15814] New: unable to view new york times feature
...not supported SWFDEC: WARN : swfdec_swf_decoder.c(342): swfdec_swf_decoder_parse_one: tag function not implemented for 74 CSMTextSettings SWFDEC: WARN : swfdec_swf_decoder.c(342): swfdec_swf_decoder_parse_one: tag function not implemented for 74 CSMTextSettings SWFDEC: WARN : swfdec_stroke.c(321): swfdec_stroke_do_parse_extended: FIXME: different caps on start and end of line are unsupported SWFDEC: WARN : swfdec_stroke.c(321): swfdec_stroke_do_parse_extended: FIXME: different caps on start and end of line are unsupported SWFDEC: WARN : swfdec_shape_parser.c(290): swfdec_shape_parser_finish: linestyle 0 has no path SWFDE...
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
...ts); + stroke->end_width = stroke->start_width; + stroke->start_color = swfdec_bits_get_rgba (bits); stroke->end_color = stroke->start_color; SWFDEC_LOG ("new stroke stroke: width %u color %08x", stroke->start_width, stroke->start_color); @@ -269,7 +280,7 @@ swfdec_stroke_do_parse_extended (SwfdecS if (morph) { stroke->pattern = swfdec_pattern_parse_morph (dec); } else { - stroke->pattern = swfdec_pattern_parse (dec, TRUE); + stroke->pattern = swfdec_pattern_parse_rgba (dec); } } else { stroke->start_color = swfdec_bits_get_rgba (...
2007 Apr 13
0
5 commits - libswfdec/Makefile.am libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_font.c libswfdec/swfdec_loadertarget.c libswfdec/swfdec_movie.h libswfdec/swfdec_pattern.c libswfdec/swfdec_pattern.h libswfdec/swfdec_player.c
...idth, SwfdecColor color) +{ + SwfdecStroke *stroke = g_object_new (SWFDEC_TYPE_STROKE, NULL); + + stroke->start_width = width; + stroke->end_width = width; + stroke->start_color = color; + stroke->end_color = color; + + return SWFDEC_PATTERN (stroke); +} + +static SwfdecPattern * +swfdec_stroke_do_parse_extended (SwfdecBits *bits, gboolean morph, + SwfdecPattern *fill_styles, guint n_fill_styles) +{ + SwfdecStroke *stroke = g_object_new (SWFDEC_TYPE_STROKE, NULL); + + SWFDEC_ERROR ("FIXME: implement"); + return SWFDEC_PATTERN (stroke); +} + +SwfdecPattern * +swfdec_stroke_parse_extended (...