X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fsurface.cc;h=3f5624d7f089192d8ca8e15581d3942570ab01c4;hb=2808ab5bad8ff49a1af909c2515288310cc89378;hp=60e6824cd50e037fe63d8180710adb68badb0970;hpb=74cfb1b4c115cdb4e05aa823b09d2b5ea9d0d690;p=chaz%2Fopenbox diff --git a/otk/surface.cc b/otk/surface.cc index 60e6824c..3f5624d7 100644 --- a/otk/surface.cc +++ b/otk/surface.cc @@ -1,8 +1,6 @@ // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- -#ifdef HAVE_CONFIG_H -# include "../config.h" -#endif // HAVE_CONFIG_H +#include "config.h" #include "surface.hh" #include "display.hh" @@ -11,6 +9,7 @@ extern "C" { #include +#include } namespace otk { @@ -18,6 +17,7 @@ namespace otk { Surface::Surface(int screen, const Size &size) : _screen(screen), _size(size), + _pixel_data(new pixel32[size.width()*size.height()]), _pixmap(None), _xftdraw(0) { @@ -26,6 +26,7 @@ Surface::Surface(int screen, const Size &size) Surface::~Surface() { destroyObjects(); + delete [] _pixel_data; } void Surface::setPixmap(const RenderColor &color) @@ -35,6 +36,15 @@ void Surface::setPixmap(const RenderColor &color) XFillRectangle(**display, _pixmap, color.gc(), 0, 0, _size.width(), _size.height()); + + pixel32 val = 0; // XXX set this from the color and shift amounts! + for (unsigned int i = 0, s = _size.width() * _size.height(); i < s; ++i) { + unsigned char *p = (unsigned char*)&_pixel_data[i]; + *p = (unsigned char) (val >> 24); + *++p = (unsigned char) (val >> 16); + *++p = (unsigned char) (val >> 8); + *++p = (unsigned char) val; + } } void Surface::setPixmap(XImage *image)