static void dest(gpointer data) { #ifdef DEBUG RrColor *c = data; if (c->refcount > 0) g_error("color %d (%d,%d,%d) in hash table with %d " "leftover references", c->id, RrColorRed(c), RrColorGreen(c), RrColorBlue(c), c->refcount); #endif }
static guint32 rr_color_pixel(const RrColor *c) { return (guint32)((RrColorRed(c) << 24) + (RrColorGreen(c) << 16) + + (RrColorBlue(c) << 8) + 0xff); }