diff audacious/widgets/vis.h @ 2203:60bd49189fde trunk

[svn] - two realcolour modes for voiceprint vis: Fire and Ice - removed duplicate code from vis.c
author marvin
date Fri, 22 Dec 2006 20:10:22 -0800
parents c12319817d7e
children
line wrap: on
line diff
--- a/audacious/widgets/vis.h	Fri Dec 22 17:35:11 2006 -0800
+++ b/audacious/widgets/vis.h	Fri Dec 22 20:10:22 2006 -0800
@@ -46,6 +46,10 @@
 typedef enum {
     SCOPE_DOT, SCOPE_LINE, SCOPE_SOLID
 } ScopeMode;
+typedef enum {
+  VOICEPRINT_NORMAL, VOICEPRINT_FIRE, VOICEPRINT_ICE
+} VoiceprintMode;
+
 
 typedef enum {
     VU_NORMAL, VU_SMOOTH
@@ -73,6 +77,7 @@
 typedef struct _Vis Vis;
 
 void vis_draw(Widget * w);
+void vis_draw_pixel(Vis * vis, guchar *texture, gint x, gint y, guint8 colour);
 
 Vis *create_vis(GList ** wlist, GdkPixmap * parent, GdkWindow * window,
                 GdkGC * gc, gint x, gint y, gint width, gboolean doublesize);