mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-02 06:12:41 -06:00
13 lines
245 B
C++
13 lines
245 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 {};
|
|
|
|
#include FRAMEBUFFER_INCLUDE
|