00001 #ifndef _GOOMCORE_H 00002 #define _GOOMCORE_H 00003 00004 #include "goomconfig.h" 00005 00006 #define NB_FX 10 00007 00008 void goom_init (guint32 resx, guint32 resy, int cinemascope); 00009 void goom_set_resolution (guint32 resx, guint32 resy, int cinemascope); 00010 00011 /* 00012 * forceMode == 0 : do nothing 00013 * forceMode == -1 : lock the FX 00014 * forceMode == 1..NB_FX : force a switch to FX n°forceMode 00015 */ 00016 guint32 *goom_update (gint16 data[2][512], int forceMode); 00017 void goom_close (); 00018 00019 #endif
1.5.5