all repos — openbox @ 0ba441fe8f379ec506000f7fa29f867cb6bc0d51

openbox fork - make it a bit more like ryudo

remove the XImage from Surface
Dana Jansens danakj@orodu.net
commit

0ba441fe8f379ec506000f7fa29f867cb6bc0d51

parent

41e1810c0330786766251368af53758c6d7d16ee

3 files changed, 2 insertions(+), 14 deletions(-)

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

@@ -17,7 +17,6 @@

Surface::Surface(int screen) : _screen(screen), _size(1, 1), - _im(0), _pm(None), _xftdraw(0) {

@@ -27,7 +26,6 @@

Surface::Surface(int screen, const Point &size) : _screen(screen), _size(size), - _im(0), _pm(None), _xftdraw(0) {

@@ -41,13 +39,10 @@ }

void Surface::createObjects() { - assert(!_im); assert(_pm == None); assert(!_xftdraw); + assert(_pm == None); assert(!_xftdraw); const ScreenInfo *info = display->screenInfo(_screen); - _im = XCreateImage(**display, info->visual(), info->depth(), - ZPixmap, 0, NULL, _size.x(), _size.y(), 32, 0); - _pm = XCreatePixmap(**display, info->rootWindow(), _size.x(), _size.y(), info->depth());

@@ -56,19 +51,13 @@ }

void Surface::destroyObjects() { - assert(_im); assert(_pm != None); assert(_xftdraw); + assert(_pm != None); assert(_xftdraw); XftDrawDestroy(_xftdraw); _xftdraw = 0; XFreePixmap(**display, _pm); _pm = None; - - // do the delete ourselves cuz we alloc it with new not malloc - delete [] _im->data; - _im->data = NULL; - XDestroyImage(_im); - _im = 0; } void Surface::setSize(int w, int h)
M otk/surface.hhotk/surface.hh

@@ -18,7 +18,6 @@

class Surface { int _screen; Point _size; - XImage *_im; Pixmap _pm; XftDraw *_xftdraw;