fuc put it back

This commit is contained in:
Dana Jansens 2003-01-18 00:51:11 +00:00
parent 67bb7f8ce0
commit 24b33ef877
3 changed files with 11 additions and 10 deletions

View file

@ -57,14 +57,4 @@ RenderControl::~RenderControl()
} }
void RenderControl::render(::Drawable d)
{
Pixmap p = XCreatePixmap(**display, d, 255, 30, _screen->depth());
XFreePixmap(**display, p);
}
} }

View file

@ -57,4 +57,13 @@ TrueRenderControl::~TrueRenderControl()
} }
void TrueRenderControl::render(::Drawable d)
{
Pixmap p = XCreatePixmap(**display, d, 255, 30, _screen->depth());
XFreePixmap(**display, p);
}
} }

View file

@ -16,6 +16,8 @@ private:
public: public:
TrueRenderControl(const ScreenInfo *screen); TrueRenderControl(const ScreenInfo *screen);
virtual ~TrueRenderControl(); virtual ~TrueRenderControl();
virtual void render(::Drawable d) = 0;
}; };
} }