summaryrefslogtreecommitdiff
path: root/src/post/goom/goom_visual_fx.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2005-07-19 18:10:29 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2005-07-19 18:10:29 +0000
commit6bfc655ee19aa82cce3277e6f9c861661cca5fb4 (patch)
treee73fb914fba58583558278d41fc3b7809db4834c /src/post/goom/goom_visual_fx.h
parentd1245110dbd99f3018847c59316b677b92423973 (diff)
downloadxine-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_visual_fx.h')
-rw-r--r--src/post/goom/goom_visual_fx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/goom_visual_fx.h b/src/post/goom/goom_visual_fx.h
index bb5c8f164..6939ac804 100644
--- a/src/post/goom/goom_visual_fx.h
+++ b/src/post/goom/goom_visual_fx.h
@@ -15,7 +15,7 @@
#include "goom_typedefs.h"
struct _VISUAL_FX {
- void (*init) (struct _VISUAL_FX *_this);
+ void (*init) (struct _VISUAL_FX *_this, PluginInfo *info);
void (*free) (struct _VISUAL_FX *_this);
void (*apply) (struct _VISUAL_FX *_this, Pixel *src, Pixel *dest, PluginInfo *info);
void *fx_data;