From 3147ad1a60db250b5b552a406dc33046d250cfea Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 11 Feb 2003 23:58:33 +0000 Subject: start on the rendering images code --- otk/surface.cc | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'otk/surface.cc') 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) -- cgit v1.2.3