diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2005-07-19 18:10:29 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2005-07-19 18:10:29 +0000 |
commit | 6bfc655ee19aa82cce3277e6f9c861661cca5fb4 (patch) | |
tree | e73fb914fba58583558278d41fc3b7809db4834c /src/post/goom/goom_plugin_info.h | |
parent | d1245110dbd99f3018847c59316b677b92423973 (diff) | |
download | xine-lib-6bfc655ee19aa82cce3277e6f9c861661cca5fb4.tar.gz xine-lib-6bfc655ee19aa82cce3277e6f9c861661cca5fb4.tar.bz2 |
update goom to 2k4-0 + patches. details:
- removed convolve_fx: goom logo is definitely annoying. besides using
xine_fast_memcpy instead of convolve makes it much faster!
- reduced number of tentacles: too many tentacles on low res (320x240)
made it too brighter
- darker ifs.c: again problem with low res, image was saturating
to white most of the time
- increased fps to 14 now that goom is faster ;-)
CVS patchset: 7667
CVS date: 2005/07/19 18:10:29
Diffstat (limited to 'src/post/goom/goom_plugin_info.h')
-rw-r--r-- | src/post/goom/goom_plugin_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/goom_plugin_info.h b/src/post/goom/goom_plugin_info.h index b587c0c65..8d5d098ba 100644 --- a/src/post/goom/goom_plugin_info.h +++ b/src/post/goom/goom_plugin_info.h @@ -104,6 +104,7 @@ struct _PLUGIN_INFO { guint32 *back; Pixel *p1, *p2; Pixel *conv; + Pixel *outputBuf; /** state of goom */ guint32 cycle; @@ -158,7 +159,6 @@ struct _PLUGIN_INFO { struct { void (*draw_line) (Pixel *data, int x1, int y1, int x2, int y2, int col, int screenx, int screeny); void (*zoom_filter) (int sizeX, int sizeY, Pixel *src, Pixel *dest, int *brutS, int *brutD, int buffratio, int precalCoef[16][16]); - void (*create_output_with_brightness) (Pixel *src, Pixel *dest, int screensize, int iff); } methods; GoomRandom *gRandom; |