]> icculus.org git repositories - mikachu/openbox.git/blob - otk/truerendercontrol.hh
*** empty log message ***
[mikachu/openbox.git] / otk / truerendercontrol.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __truerendercontrol_hh
3 #define __truerendercontrol_hh
4
5 #include "rendercontrol.hh"
6
7 namespace otk {
8
9 class TrueRenderControl : public RenderControl {
10 private:
11   // the offset of each color in a color mask
12   int _red_offset;
13   int _green_offset;
14   int _blue_offset;
15
16 public:
17   TrueRenderControl(const ScreenInfo *screen);
18   virtual ~TrueRenderControl();
19
20   virtual void render(Surface *sf);
21 };
22
23 }
24
25 #endif // __truerendercontrol_hh