| 114 | |
| 115 | |
| 116 | int VirtualWin::init(int w, int h, VGLFBConfig config_) |
| 117 | { |
| 118 | CriticalSection::SafeLock l(mutex); |
| 119 | if(deletedByWM) THROW("Window has been deleted by window manager"); |
| 120 | return VirtualDrawable::init(w, h, config_); |
| 121 | } |
| 122 | |
| 123 | |
| 124 | // The resize doesn't actually occur until the next time updatedrawable() is |
no test coverage detected