]> Dogcows Code - chaz/openbox/blobdiff - otk/surface.cc
add a keyboard plugin
[chaz/openbox] / otk / surface.cc
index 9fff018c3a67d79060d70ae269b6ec6b65cfd8f4..cc2255030d660f3aca605fedd0f17c9d1eb0cd5c 100644 (file)
@@ -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)
This page took 0.025791 seconds and 4 git commands to generate.