mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-09 06:12:52 -06:00
18 lines
320 B
C++
18 lines
320 B
C++
class ViewDraw : public SystemDraw {
|
|
ImageBuffer ib;
|
|
|
|
Vector<Rect> dummy_invalid;
|
|
|
|
public:
|
|
ViewDraw(Ctrl *ctrl) : SystemDraw(ib, dummy_invalid) { _DBG_ }
|
|
~ViewDraw() {}
|
|
};
|
|
|
|
class DHCtrl : Ctrl {};
|
|
|
|
void InitFB();
|
|
|
|
#include FRAMEBUFFER_INCLUDE
|
|
|
|
void SetDesktop(Ctrl& desktop);
|
|
Ctrl *GetDesktop();
|