X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fpopsquares.c;h=15cb61b4a6f36cc1219987811e3c74250f3ecb21;hb=6f5482d73adb0165c0130bb47d852644ab0c4869;hp=6c26165f6dc4cc6fdad76194c421b8d4e225c9fa;hpb=49f5b54f312fe4ac2e9bc47581a72451bd0e8439;p=xscreensaver diff --git a/hacks/popsquares.c b/hacks/popsquares.c index 6c26165f..15cb61b4 100644 --- a/hacks/popsquares.c +++ b/hacks/popsquares.c @@ -83,8 +83,8 @@ popsquares_init (Display *dpy, Window window) st->sw = st->xgwa.width / st->subdivision; st->sh = st->xgwa.height / st->subdivision; - st->gw = st->xgwa.width / st->sw; - st->gh = st->xgwa.height / st->sh; + st->gw = st->sw ? st->xgwa.width / st->sw : 0; + st->gh = st->sh ? st->xgwa.height / st->sh : 0; st->nsquares = st->gw * st->gh; gcv.foreground = fg.pixel; @@ -187,6 +187,36 @@ static void popsquares_reshape (Display *dpy, Window window, void *closure, unsigned int w, unsigned int h) { + struct state *st = (struct state *) closure; + int x, y; + XGetWindowAttributes (st->dpy, st->window, &st->xgwa); + st->sw = st->xgwa.width / st->subdivision; + st->sh = st->xgwa.height / st->subdivision; + st->gw = st->sw ? st->xgwa.width / st->sw : 0; + st->gh = st->sh ? st->xgwa.height / st->sh : 0; + st->nsquares = st->gw * st->gh; + free (st->squares); + st->squares = (square *) calloc (st->nsquares, sizeof(square)); + + for (y = 0; y < st->gh; y++) + for (x = 0; x < st->gw; x++) + { + square *s = (square *) &st->squares[st->gw * y + x]; + s->w = st->sw; + s->h = st->sh; + s->x = x * st->sw; + s->y = y * st->sh; + } + + randomize_square_colors(st->squares, st->nsquares, st->ncolors); + + if (st->dbuf) { + XFreePixmap (dpy, st->ba); + XFreePixmap (dpy, st->bb); + st->ba = XCreatePixmap (st->dpy, st->window, st->xgwa.width, st->xgwa.height, st->xgwa.depth); + st->bb = XCreatePixmap (st->dpy, st->window, st->xgwa.width, st->xgwa.height, st->xgwa.depth); + st->b = st->ba; + } } static Bool