Displaying 8 results from an estimated 8 matches for "cairo_extend_pad".
2007 Oct 13
2
[Bug 12793] New: Crash playing a swf file (because of missing NULL ptr check)
...ists.freedesktop.org
Trying to play a swf file on my harddrive, I had a crash.
Looking at gdb's output, I saw that :
SWFDEC: FIXME: swfdec_sound.c(254): tag_func_sound_stream_head: playback codec
2 doesn't match sound codec 0
SWFDEC: FIXME: swfdec_pattern.c(446): swfdec_pattern_do_parse: CAIRO_EXTEND_PAD
is not yet implemented
SWFDEC: WARN : swfdec_shape_parser.c(279): swfdec_shape_parser_finish:
fillstyle 0 has no path
SWFDEC: FIXME: swfdec_sound.c(254): tag_func_sound_stream_head: playback codec
2 doesn't match sound codec 0
SWFDEC: FIXME: swfdec_pattern.c(446): swfdec_pattern_do_parse: CAIRO...
2007 Nov 01
3
[Bug 13051] New: CNN Cartoon Clicks are not responsive to mouse events
...t gnu.org
QAContact: swfdec at lists.freedesktop.org
Radiobuttons and pushbuttons don't work in Mike Mikula's Cartoon Clicks. No
choice can be made with the mouse. When run in swfplay, following messages are
shown.
SWFDEC: FIXME: swfdec_pattern.c(446): swfdec_pattern_do_parse: CAIRO_EXTEND_PAD
is not yet implemented
SWFDEC: WARN : swfdec_shape_parser.c(279): swfdec_shape_parser_finish:
fillstyle 0 has no path
SWFDEC: FIXME: swfdec_pattern.c(446): swfdec_pattern_do_parse: CAIRO_EXTEND_PAD
is not yet implemented
SWFDEC: WARN : swfdec_shape_parser.c(279): swfdec_shape_parser_finish:
fillsty...
2007 Nov 18
2
[Bug 13293] New: _cairo_pen_find_active_cw_vertex_index failed assertion
...ntact: swfdec at lists.freedesktop.org
With latest git 7c377ba3852ca8c66e5d42bbdec7662ca9b7a4fd i get this backtrace
while loading http://www.labottegadellabici.it/index.swf.
Loading stream: http://www.labottegadellabici.it/index.swf
SWFDEC: FIXME: swfdec_pattern.c(448): swfdec_pattern_do_parse: CAIRO_EXTEND_PAD
is not yet implemented
SWFDEC: WARN : swfdec_shape_parser.c(279): swfdec_shape_parser_finish:
fillstyle 0 has no path
SWFDEC: WARN : swfdec_shape_parser.c(279): swfdec_shape_parser_finish:
fillstyle 0 has no path
SWFDEC: WARN : swfdec_as_interpret.c(568): swfdec_player_get_movie_from_string:
"...
2007 Dec 25
5
[Bug 13815] New: Wrong url for http get
...Contact: swfdec at lists.freedesktop.org
Version: git e53a7897c6361b974dd6a98d4960b8ff8c913ea2
I get a 404 while with adobe works fine.
rm at eurasia:~/swfdec/swfdec/player$ ./swfplay
http://www.betterworldbooks.com/Flash/output.swf
SWFDEC: FIXME: swfdec_pattern.c(331): swfdec_pattern_do_parse: CAIRO_EXTEND_PAD
is not yet implemented
SWFDEC: WARN : swfdec_as_interpret.c(920): swfdec_action_call_method: no
function named "Cancel" on object unknown
SWFDEC: ERROR: swfdec_loader.c(335): swfdec_loader_error: error in loader
0x83fd458: 404 Not Found
I sniffed the traffic with ethereal on both a machi...
2007 Nov 08
0
configure.ac libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_playback_alsa.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_types.c libswfdec/swfdec_audio_flv.c libswfdec/swfdec_audio_flv.h
...ttern.c
index a9427bc..d5aaaaa 100644
--- a/libswfdec/swfdec_pattern.c
+++ b/libswfdec/swfdec_pattern.c
@@ -397,6 +397,8 @@ swfdec_pattern_do_parse (SwfdecBits *bits, SwfdecSwfDecoder *dec, gboolean rgba)
SWFDEC_ERROR ("spread mode 3 is undefined for gradients");
gradient->extend = CAIRO_EXTEND_PAD;
break;
+ default:
+ g_assert_not_reached ();
}
interpolation = swfdec_bits_getbits (bits, 2);
if (interpolation) {
@@ -542,6 +544,8 @@ swfdec_pattern_parse_morph (SwfdecBits *bits, SwfdecSwfDecoder *dec)
SWFDEC_ERROR ("spread mode 3 is undefined for gradients");...
2007 Aug 24
0
9 commits - configure.ac doc/Makefile.am libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_keys.h libswfdec/swfdec_pattern.c libswfdec/swfdec_player.c test/trace
...-335,7 +335,12 @@ swfdec_pattern_do_parse (SwfdecSwfDecode
if (paint_style_type == 0x40 || paint_style_type == 0x42) {
SWFDEC_IMAGE_PATTERN (pattern)->extend = CAIRO_EXTEND_REPEAT;
} else {
+#if 0
+ /* not implemented yet in cairo */
+ SWFDEC_IMAGE_PATTERN (pattern)->extend = CAIRO_EXTEND_PAD;
+#else
SWFDEC_IMAGE_PATTERN (pattern)->extend = CAIRO_EXTEND_NONE;
+#endif
}
if (paint_style_type == 0x40 || paint_style_type == 0x41) {
SWFDEC_IMAGE_PATTERN (pattern)->filter = CAIRO_FILTER_BILINEAR;
diff-tree d6c0c77e1140c6524346fea1d9ff7374cce55d7d (from 04b625c254edf346...
2007 Dec 03
0
12 commits - libswfdec/Makefile.am libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_gradient_pattern.c libswfdec/swfdec_gradient_pattern.h libswfdec/swfdec_movie_as_drawing.c libswfdec/swfdec_pattern.c
...libswfdec/swfdec_gradient_pattern.c
@@ -105,8 +105,9 @@ swfdec_gradient_pattern_class_init (SwfdecGradientPatternClass *klass)
}
static void
-swfdec_gradient_pattern_init (SwfdecGradientPattern *pattern)
+swfdec_gradient_pattern_init (SwfdecGradientPattern *gradient)
{
+ gradient->extend = CAIRO_EXTEND_PAD;
}
SwfdecDraw *
commit 9660a4b24a464585adc7f228bb5e058d0463e6a5
Author: Benjamin Otte <otte at gnome.org>
Date: Sun Dec 2 15:29:49 2007 +0100
add test for empty gradients
diff --git a/test/image/Makefile.am b/test/image/Makefile.am
index 9993ebc..bf08ce2 100644
--- a/test/image/Ma...
2007 Oct 12
0
Changes to 'refs/tags/0.5.3'
...allow optional arguments after a '|' separator in SWFDEC_AS_CHECK
wrong comparison, oops
warn if an ASNative doesn't exist
set the stop sample to end of sample by default
implement Sound(), Sound.attachSound() and Sound.start()
also warn about missing CAIRO_EXTEND_PAD when parsing morph patterns
add swfdec_player_stop_sounds() to stop selected sounds
whoops, forgot these 2
add a hack that I don't like at all, but that works
copy/paste caused some issues here
implement Sound.stop()
add docs and fix copyright
whooooops...