Maybe this question will whet your appetite.
I have been extensively editing the Fuzzyflakes xscreensaver. I have been able to give it a background but it keeps flickering. I have tried to put in some form of double buffering (and it looks like the screensaver already has some form of double buffering built-in), but I can't stop it.
I have already loaded the image and have tried to put it on the screen right before the flakes are drawn:
/* This is from the FuzzyflakesInit function */
...
FuzzyFlakesMove(flake);
XSetForeground(flake->dpy, flake->GCVar, flake->BackColor);
XFillRectangle(flake->dpy, flake->DB.b, flake->GCVar, 0, 0, flake->XGWA.width, flake->XGWA.height);
/* Part that I put in */
XPutImage(flake->dpy, flake->window, background_gcontext, img, 0, 0, 0, 0, 1000, 1000);
...
I have placed code in the fuzzyflakes_draw() function to draw from the background image buffer:
/* From the function fuzzyflakes_init */
...
Flake *flake = (Flake *) closure;
FuzzyFlakes(flake);
/* Copy the background image buffer to the window (due to double buffering) */
XCopyArea(dpy, double_buffer, window, background_gcontext, 0, 0, flake->XGWA.width, flake->XGWA.height, 0, 0);
if (flake->DB.dbuf)
{
XCopyArea(flake->dpy, flake->DB.b, flake->window,
flake->GCVar, 0, 0, flake->XGWA.width, flake->XGWA.height,
0, 0);
...
So how can I eliminate this flickering?
