X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fstrange.c;h=604f471b9af5d7e6125f55e10d3e066b15122d85;hb=6f5482d73adb0165c0130bb47d852644ab0c4869;hp=dce0182eeb88c297d3a5339cc354cc906abb23b0;hpb=5f1f12f2a37da634000f96d18d59cc73a8814ef7;p=xscreensaver diff --git a/hacks/strange.c b/hacks/strange.c index dce0182e..604f471b 100644 --- a/hacks/strange.c +++ b/hacks/strange.c @@ -42,7 +42,6 @@ static const char sccsid[] = "@(#)strange.c 5.00 2000/11/01 xlockmore"; # define SMOOTH_COLORS # define refresh_strange 0 -# define reshape_strange 0 # define strange_handle_event 0 # include "xlockmore.h" /* from the xscreensaver distribution */ #else /* !STANDALONE */ @@ -142,7 +141,7 @@ typedef struct _ATTRACTOR { static ATTRACTOR *Root = (ATTRACTOR *) NULL; #ifdef useAccumulator -XColor* cols; +static XColor* cols; #endif #ifdef POINTS_HISTORY @@ -487,6 +486,7 @@ draw_strange(ModeInfo * mi) A->Count = 0; } A->Col++; + mi->recursion_depth = A->Count; } @@ -607,7 +607,7 @@ init_strange(ModeInfo * mi) #define A Attractor if (useAccumulator) { XWindowAttributes xgwa; - int i,j,got_color; + int i,j; XGetWindowAttributes (display, window, &xgwa); /* cmap = xgwa.colormap; */ /* cmap = XCreateColormap(display, window, MI_VISUAL(mi), AllocAll); */ @@ -638,7 +638,7 @@ init_strange(ModeInfo * mi) cols[i].green = 65536*(li-FULLBLUE)/(256-FULLBLUE); cols[i].blue = 65535; } - got_color = XAllocColor (display, xgwa.colormap, &cols[i]); + XAllocColor (display, xgwa.colormap, &cols[i]); /* if (!XAllocColor(MI_DISPLAY(mi), cmap, &cols[i])) { if (!XAllocColor(display, cmap, &cols[i])) { @@ -662,6 +662,13 @@ init_strange(ModeInfo * mi) XSetGraphicsExposures(display, MI_GC(mi), False); } +ENTRYPOINT void +reshape_strange(ModeInfo * mi, int width, int height) +{ + XClearWindow (MI_DISPLAY (mi), MI_WINDOW(mi)); + init_strange (mi); +} + /***************************************************************/ ENTRYPOINT void