search for: flag_set

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

Did you mean: flags_set
2003 May 16
4
[RFC] report options
I have hinted in the past of wanting to go to a more selective control of the output of rsync. Here it is. PROBLEMS with the existing --verbose et al. The simple incrementing verbose doesn't allow one to restrict stdout to what actually is of interest. For instance inside dirvish i don't care about directories, or any kind of non-regular file because they show up every time even if
2007 Nov 20
0
19 commits - libswfdec/swfdec_audio_event.c libswfdec/swfdec_bits.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_image.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
...-and-clip.c @@ -0,0 +1,104 @@ +/* gcc `pkg-config --libs --cflags libming` mask-and-clip.c -o mask-and-clip && ./mask-and-clip + */ + +#include <ming.h> + +enum { + FIRST_MOVIE_CLIP_ALL, + SECOND_MOVIE_CLIP_ALL, + THIRD_MOVIE_SWAP_DEPTH, + THIRD_MOVIE_MASK, + N_FLAGS +}; +#define FLAG_SET(var, flag) ((var) & (1 << (flag))) + +static SWFBlock +get_rectangle (int r, int g, int b) +{ + SWFMovieClip clip; + SWFShape shape; + SWFFillStyle fill; + + clip = newSWFMovieClip (); + shape = newSWFShape (); + fill = SWFShape_addSolidFillStyle (shape, r, g, b, 255); + SWFShape_s...