X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fpseudorendercontrol.hh;h=27d0620604b290dd9355462678d09a69fff8f3bb;hb=7c32ac2b3f0bfd02a1efea1d67e5ad1c3c5be93f;hp=a1a12a811c56d0078e703946bb54e9e136a11e04;hpb=afb8a28120b21569934202968283e65a173c3bd8;p=chaz%2Fopenbox diff --git a/otk/pseudorendercontrol.hh b/otk/pseudorendercontrol.hh index a1a12a81..27d06206 100644 --- a/otk/pseudorendercontrol.hh +++ b/otk/pseudorendercontrol.hh @@ -4,30 +4,19 @@ #include "rendercontrol.hh" -extern "C" { - -#ifdef HAVE_STDINT_H -# include -#else -# ifdef HAVE_SYS_TYPES_H -# include -# endif -#endif - -} - -#include - namespace otk { class PseudoRenderControl : public RenderControl { private: - + 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; + public: PseudoRenderControl(int screen); virtual ~PseudoRenderControl(); - virtual void drawBackground(Surface& sf, const RenderTexture &texture) const; }; }