search for: b3616dc

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

2007 Apr 28
0
libswfdec/swfdec_font.c
...hor: Benjamin Otte <otte@gnome.org> Date: Sat Apr 28 14:41:04 2007 +0200 Fix regression in font parsing code that made DefineFont not work Someone knows a simple way to create testfiles for this? :( diff --git a/libswfdec/swfdec_font.c b/libswfdec/swfdec_font.c index 8b6d5f3..b3616dc 100644 --- a/libswfdec/swfdec_font.c +++ b/libswfdec/swfdec_font.c @@ -188,13 +188,14 @@ swfdec_font_parse_shape (SwfdecSwfDecode g_ptr_array_add (shape->fills, swfdec_pattern_new_color (0xFFFFFFFF)); g_ptr_array_add (shape->lines, swfdec_stroke_new (20, 0xFFFFFFFF)); + swfdec_bits_i...
2007 Jun 15
0
Branch 'as' - 5 commits - libswfdec/swfdec_as_native_function.c libswfdec/swfdec_edittext.c libswfdec/swfdec_edittext.h libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_morphshape.h
...it_text (SwfdecSwfDecoder * s); +int tag_func_define_edit_text (SwfdecSwfDecoder * s, + guint tag); /* implemented in swfdec_html_parser.c */ SwfdecParagraph * swfdec_paragraph_html_parse (SwfdecEditText * text, diff --git a/libswfdec/swfdec_font.c b/libswfdec/swfdec_font.c index b3616dc..b7878a0 100644 --- a/libswfdec/swfdec_font.c +++ b/libswfdec/swfdec_font.c @@ -29,6 +29,7 @@ #include "swfdec_shape.h" #include "swfdec_stroke.h" #include "swfdec_swf_decoder.h" +#include "swfdec_tag.h" G_DEFINE_TYPE (SwfdecFont, swfdec_font, SWFDEC_TY...