]> Dogcows Code - chaz/openbox/blobdiff - otk/pseudorendercontrol.hh
start of pseudo init
[chaz/openbox] / otk / pseudorendercontrol.hh
index d834d5d773913e8632811a625e06ecec58a018ad..603fc4baa6ea4ac6676a6c6e4b67f1ebca3ec569 100644 (file)
@@ -4,32 +4,29 @@
 
 #include "rendercontrol.hh"
 
-extern "C" {
-
-#ifdef HAVE_STDINT_H
-#  include <stdint.h>
-#else
-#  ifdef HAVE_SYS_TYPES_H
-#    include <sys/types.h>
-#  endif
-#endif
-
-}
-
-#include <vector>
-
 namespace otk {
 
 class PseudoRenderControl : public RenderControl {
 private:
-
+  // color tables, meaning, 256 (possibly) different shades of each color,
+  // based on the number of bits there are available for each color in the
+  // visual
+  unsigned char _red_color_table[256];
+  unsigned char _green_color_table[256];
+  unsigned char _blue_color_table[256];
+
+  int _cpc; // colors-per-channel: must be a value between [2,6]
+  int _bpp; // bits-per-pixel
+  int _ncolors; // number of allocated colors, size of the XColor array
+
+  XColor *_colors;
+  
+  virtual void reduceDepth(Surface &sf, XImage *im) const;
+  
 public:
   PseudoRenderControl(int screen);
   virtual ~PseudoRenderControl();
 
-  virtual void drawBackground(Surface& sf, const RenderTexture &texture) const;
-  virtual void drawImage(Surface &sf, int w, int h,
-                         unsigned long *data) const;
 };
 
 }
This page took 0.024982 seconds and 4 git commands to generate.