[win] Fix crash on close.

This commit is contained in:
vng 2011-09-22 19:25:02 +03:00 committed by Alex Zolotarev
parent a032f7e6b6
commit b0382314df
2 changed files with 8 additions and 0 deletions

View file

@ -27,6 +27,13 @@ namespace qt
return m_p;
}
GLDrawWidget::~GLDrawWidget()
{
makeCurrent();
m_p.reset();
doneCurrent();
}
void GLDrawWidget::initializeGL()
{
/// we'll perform swap by ourselves, see issue #333

View file

@ -29,6 +29,7 @@ namespace qt
typedef DrawerYG drawer_t;
GLDrawWidget(QWidget * pParent);
~GLDrawWidget();
shared_ptr<yg::gl::RenderContext> const & renderContext();
shared_ptr<yg::ResourceManager> const & resourceManager();