diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-11 23:58:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-11 23:58:33 +0000 |
| commit | 3147ad1a60db250b5b552a406dc33046d250cfea (patch) | |
| tree | 9278191b64a67e46e4c6f15452ec4c196881ae8c /otk/surface.cc | |
| parent | 555facb9c737be20cd923abc15875af0281a8927 (diff) | |
start on the rendering images code
Diffstat (limited to 'otk/surface.cc')
| -rw-r--r-- | otk/surface.cc | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/otk/surface.cc b/otk/surface.cc index 9fff018c..b7aadd0f 100644 --- a/otk/surface.cc +++ b/otk/surface.cc @@ -46,14 +46,11 @@ 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; - } + pixel32 val = (color.red() << default_red_shift) & + (color.green() << default_green_shift) & + (color.blue() << default_blue_shift); + for (unsigned int i = 0, s = _size.width() * _size.height(); i < s; ++i) + _pixel_data[i] = val; } void Surface::setPixmap(XImage *image) |
