Fixed crash on exit and changing resolution with old opengl.
Regression introduced in commit 93f24f2a745caea630018126885f06b3d1fd7933. Playing the real game is still not working.
This commit is contained in:
parent
f351c359fd
commit
11f6084fc5
@ -157,7 +157,10 @@ IrrDriver::~IrrDriver()
|
|||||||
|
|
||||||
delete m_shadow_matrices;
|
delete m_shadow_matrices;
|
||||||
m_shadow_matrices = NULL;
|
m_shadow_matrices = NULL;
|
||||||
Shaders::destroy();
|
if (CVS->isGLSL())
|
||||||
|
{
|
||||||
|
Shaders::destroy();
|
||||||
|
}
|
||||||
delete m_wind;
|
delete m_wind;
|
||||||
delete m_spherical_harmonics;
|
delete m_spherical_harmonics;
|
||||||
} // ~IrrDriver
|
} // ~IrrDriver
|
||||||
@ -822,7 +825,10 @@ void IrrDriver::applyResolutionSettings()
|
|||||||
GlowPassCmd::getInstance()->kill();
|
GlowPassCmd::getInstance()->kill();
|
||||||
resetTextureTable();
|
resetTextureTable();
|
||||||
// initDevice will drop the current device.
|
// initDevice will drop the current device.
|
||||||
Shaders::destroy();
|
if (CVS->isGLSL())
|
||||||
|
{
|
||||||
|
Shaders::destroy();
|
||||||
|
}
|
||||||
initDevice();
|
initDevice();
|
||||||
|
|
||||||
// Re-init GUI engine
|
// Re-init GUI engine
|
||||||
|
Loading…
x
Reference in New Issue
Block a user