search for: f03b60f

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

2007 Feb 17
0
2 commits - doc/swfdec-sections.txt libswfdec/swfdec_color.h libswfdec/swfdec_player.c libswfdec/swfdec_player.h libswfdec/swfdec_player_internal.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c
...ust be present */ -typedef unsigned int SwfdecColor; - struct _SwfdecColorTransform { /* naming here is taken from ActionScript, where ?a is the multiplier and ?b the offset */ int ra, rb, ga, gb, ba, bb, aa, ab; diff --git a/libswfdec/swfdec_types.h b/libswfdec/swfdec_types.h index 3228a36..f03b60f 100644 --- a/libswfdec/swfdec_types.h +++ b/libswfdec/swfdec_types.h @@ -5,6 +5,10 @@ #include <glib-object.h> #include <cairo.h> +/* Pixel value in the same colorspace as cairo - endian-dependant ARGB. + * The alpha pixel must be present */ +typedef unsigned int SwfdecColor; + /*...
2007 Feb 22
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_js.c libswfdec/swfdec_js_mouse.c libswfdec/swfdec_listener.c libswfdec/swfdec_listener.h libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_root_movie.c
...uffer * actions; /* all actions we've queued up so far */ - unsigned int interval_id; /* id returned from setInterval call */ - GList * intervals; /* all currently running intervals */ }; struct _SwfdecPlayerClass diff --git a/libswfdec/swfdec_types.h b/libswfdec/swfdec_types.h index f03b60f..f601dff 100644 --- a/libswfdec/swfdec_types.h +++ b/libswfdec/swfdec_types.h @@ -43,6 +43,7 @@ typedef struct _SwfdecEventList SwfdecEv typedef struct _SwfdecFont SwfdecFont; typedef struct _SwfdecGraphic SwfdecGraphic; typedef struct _SwfdecImage SwfdecImage; +typedef struct _SwfdecListener Sw...