X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=render%2Fcolor.c;h=485b3d664a0f9cb3dec93912ede0bcf4d16838bc;hb=7043ce904bd0699df4c2d2c94333d911a06b7445;hp=c672a6d275a456f2b6fe17b15a62d09384589b47;hpb=647baa7740992d95641c45f11eb177099152561f;p=chaz%2Fopenbox diff --git a/render/color.c b/render/color.c index c672a6d2..485b3d66 100644 --- a/render/color.c +++ b/render/color.c @@ -54,6 +54,11 @@ RrColor *RrColorParse(const RrInstance *inst, gchar *colorname) return RrColorNew(inst, xcol.red >> 8, xcol.green >> 8, xcol.blue >> 8); } +/*#define NO_COLOR_CACHE*/ +#ifdef DEBUG +gint id; +#endif + RrColor *RrColorNew(const RrInstance *inst, gint r, gint g, gint b) { /* this should be replaced with something far cooler */ @@ -62,9 +67,11 @@ RrColor *RrColorNew(const RrInstance *inst, gint r, gint g, gint b) gint key; key = (r << 24) + (g << 16) + (b << 8); +#ifndef NO_COLOR_CACHE if ((out = g_hash_table_lookup(RrColorHash(inst), &key))) { out->refcount++; } else { +#endif xcol.red = (r << 8) | r; xcol.green = (g << 8) | g; xcol.blue = (b << 8) | b; @@ -78,8 +85,13 @@ RrColor *RrColorNew(const RrInstance *inst, gint r, gint g, gint b) out->pixel = xcol.pixel; out->key = key; out->refcount = 1; +#ifdef DEBUG + out->id = id++; +#endif +#ifndef NO_COLOR_CACHE g_hash_table_insert(RrColorHash(inst), &out->key, out); } +#endif } return out; } @@ -88,8 +100,10 @@ void RrColorFree(RrColor *c) { if (c) { if (--c->refcount < 1) { +#ifndef NO_COLOR_CACHE g_assert(g_hash_table_lookup(RrColorHash(c->inst), &c->key)); g_hash_table_remove(RrColorHash(c->inst), &c->key); +#endif if (c->pixel) XFreeColors(RrDisplay(c->inst), RrColormap(c->inst), &c->pixel, 1, 0); if (c->gc) XFreeGC(RrDisplay(c->inst), c->gc);