| 119 | } |
| 120 | |
| 121 | Widget::Widget() |
| 122 | : mWindow(nullptr), mClose(false), mLastXPos(0), mLastYPos(0), mButton(-1), |
| 123 | mWidth(512), mHeight(512), mFramePBO(0) |
| 124 | { |
| 125 | } |
| 126 | |
| 127 | Widget::Widget(int pWidth, int pHeight, const char* pTitle, const Widget* pWindow, const bool invisible) |
| 128 | : mWindow(nullptr), mClose(false), mLastXPos(0), mLastYPos(0), mButton(-1), mFramePBO(0) |
nothing calls this directly
no test coverage detected