Bug 592769 - EGL and WGL context providers crash on exit because they forget to delete the global context before the glue library dies - r=mattwoodrow, a=blocking-beta7

This commit is contained in:
Benoit Jacob 2010-09-27 16:20:11 -04:00
Родитель f60e19b6d5
Коммит 0d5ad8d120
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -1608,6 +1608,7 @@ GLContextProviderEGL::GetGlobalContext()
void
GLContextProviderEGL::Shutdown()
{
gGlobalContext = nsnull;
}
} /* namespace gl */

Просмотреть файл

@ -741,6 +741,7 @@ GLContextProviderWGL::GetGlobalContext()
void
GLContextProviderWGL::Shutdown()
{
gGlobalContext = nsnull;
}
} /* namespace gl */