forked from organicmaps/organicmaps
[win] Fix crash on close.
This commit is contained in:
parent
a032f7e6b6
commit
b0382314df
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue