]>
Dogcows Code - chaz/openbox/blob - otk/truerendercontrol.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __truerendercontrol_hh
3 #define __truerendercontrol_hh
5 #include "rendercontrol.hh"
9 class TrueRenderControl
: public RenderControl
{
11 // the offset of each color in a color mask
16 // the number of bits (1-255) that each shade of color spans across. best
17 // case is 1, which gives 255 shades
22 // color tables, meaning, 256 (possibly) different shades of each color,
23 // based on the number of bits there are available for each color in the
25 unsigned char _red_color_table
[256];
26 unsigned char _green_color_table
[256];
27 unsigned char _blue_color_table
[256];
30 TrueRenderControl(const ScreenInfo
*screen
);
31 virtual ~TrueRenderControl();
33 virtual void render(::Drawable d
);
38 #endif // __truerendercontrol_hh
This page took 0.035173 seconds and 5 git commands to generate.