all repos — openbox @ e451c08ac5a103362adbece9b8a11a16ade739c1

openbox fork - make it a bit more like ryudo

alloc colors only when needed, and free them properly on destruction
Dana Jansens danakj@orodu.net
commit

e451c08ac5a103362adbece9b8a11a16ade739c1

parent

8ad1d0bb99ec03c0a233df74aff986c4d49a762b

1 files changed, 27 insertions(+), 11 deletions(-)

jump to
M otk/rendercolor.ccotk/rendercolor.cc

@@ -28,9 +28,8 @@ : _screen(screen),

_red(red), _green(green), _blue(blue), - _gc(0) + _allocated(false) { - create(); } RenderColor::RenderColor(int screen, RGB rgb)

@@ -38,12 +37,11 @@ : _screen(screen),

_red(rgb.r), _green(rgb.g), _blue(rgb.b), - _gc(0) + _allocated(false) { - create(); } -void RenderColor::create() +void RenderColor::create() const { unsigned long color = _blue | _green << 8 | _red << 16;

@@ -84,6 +82,20 @@ item = new CacheItem(_gc, _pixel);

_cache[_screen][color] = item; ++item->count; } + + _allocated = true; +} + +unsigned long RenderColor::pixel() const +{ + if (!_allocated) create(); + return _pixel; +} + +GC RenderColor::gc() const +{ + if (!_allocated) create(); + return _gc; } RenderColor::~RenderColor()

@@ -91,13 +103,17 @@ {

unsigned long color = _blue | _green << 8 | _red << 16; CacheItem *item = _cache[_screen][color]; - assert(item); // it better be in the cache ... + + if (item) { + if (--item->count <= 0) { + // remove from the cache + XFreeGC(**display, _gc); + _cache[_screen][color] = 0; + delete item; - if (--item->count <= 0) { - // remove from the cache - XFreeGC(**display, _gc); - _cache[_screen][color] = 0; - delete item; + const ScreenInfo *info = display->screenInfo(_screen); + XFreeColors(**display, info->colormap(), &_pixel, 1, 0); + } } }