summaryrefslogtreecommitdiff
path: root/otk/rendercontrol.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-18 04:31:16 +0000
committerDana Jansens <danakj@orodu.net>2003-01-18 04:31:16 +0000
commit02066c5d0b09ae49aa1f9b7193fb16f1ac7f6a37 (patch)
treeba1252cbcad2aa593283c08096c36ab24f4f12a6 /otk/rendercontrol.hh
parente3eeac5b6eee29009f3417f309a261d43fd39d27 (diff)
starting to make render's interface
Diffstat (limited to 'otk/rendercontrol.hh')
-rw-r--r--otk/rendercontrol.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/otk/rendercontrol.hh b/otk/rendercontrol.hh
index 14c0e92c..c619597f 100644
--- a/otk/rendercontrol.hh
+++ b/otk/rendercontrol.hh
@@ -11,6 +11,7 @@ namespace otk {
class ScreenInfo;
class Surface;
+class RenderTexture;
class RenderControl {
protected:
@@ -66,7 +67,8 @@ public:
static RenderControl *getRenderControl(int screen);
- virtual void render(Surface *sf) = 0;
+ virtual void drawBackground(Surface *sf,
+ const RenderTexture &texture) const = 0;
};
}