screensaver: fix decoding of transparency in xpm files

Use 0 as transparent pixel. This is needed when using premultiplied
alpha.
dev
Philipp Brüschweiler 12 years ago committed by Kristian Høgsberg
parent 38b4d62ece
commit 774c34a381
  1. 6
      clients/wscreensaver-glue.c

@ -80,14 +80,14 @@ read_xpm_color(uint32_t *ctable, const char *line)
value = strtol(&cstr[1], &end, 16); value = strtol(&cstr[1], &end, 16);
if (strcmp(cstr, "None") == 0) if (strcmp(cstr, "None") == 0)
ctable[key] = 0x00ffffff; ctable[key] = 0x00000000;
else if (cstr[0] != '#' || !(cstr[1] != '\0' && *end == '\0')) { else if (cstr[0] != '#' || !(cstr[1] != '\0' && *end == '\0')) {
fprintf(stderr, "%s: error interpreting XPM color '%s'\n", fprintf(stderr, "%s: error interpreting XPM color '%s'\n",
progname, cstr); progname, cstr);
return; return;
} } else {
ctable[key] = value | 0xff000000; ctable[key] = value | 0xff000000;
}
} }
static void static void

Loading…
Cancel
Save