X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fpseudorendercontrol.hh;h=b6d60371a1382578124f8ba5de15648e84abbfe2;hb=3147507622de5ab771c99a4bb636f55344f6cbd7;hp=603fc4baa6ea4ac6676a6c6e4b67f1ebca3ec569;hpb=044c8ae416da315a7a111727c2f5dfc769c15125;p=chaz%2Fopenbox diff --git a/otk/pseudorendercontrol.hh b/otk/pseudorendercontrol.hh index 603fc4ba..b6d60371 100644 --- a/otk/pseudorendercontrol.hh +++ b/otk/pseudorendercontrol.hh @@ -8,25 +8,19 @@ 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; + int _bpc; // number of bits per color + int _ncolors; // number of allocated colors, size of the XColor array + XColor *_colors; // the valid allocated colors virtual void reduceDepth(Surface &sf, XImage *im) const; + + const XColor *pickColor(int r, int g, int b) const; public: PseudoRenderControl(int screen); virtual ~PseudoRenderControl(); + virtual void allocateColor(XColor *color) const; }; }