Do not clear traffic cache on GL context destruction.

This commit is contained in:
Daria Volvenkova 2016-12-14 14:56:51 +03:00
parent 57f36f2545
commit 28b22c6d86
2 changed files with 1 additions and 8 deletions

View file

@ -92,7 +92,7 @@ void TrafficGenerator::Init()
void TrafficGenerator::ClearGLDependentResources()
{
ClearCache();
InvalidateTexturesCache();
m_batchersPool.reset();
}

View file

@ -154,13 +154,6 @@ void TrafficManager::OnMwmDelete(MwmSet::MwmId const & mwmId)
void TrafficManager::OnDestroyGLContext()
{
if (!IsEnabled())
return;
m_observer.OnTrafficInfoClear();
lock_guard<mutex> lock(m_mutex);
Clear();
}
void TrafficManager::OnRecoverGLContext()