Bug 929506 - Check that the GLContext is not destroyed in MakeCurrent. r=bjacob

This commit is contained in:
Nicolas Silva 2013-11-21 22:58:32 +01:00
Родитель 76b65afddb
Коммит 6dc80430b8
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -2385,6 +2385,9 @@ public:
#endif
bool MakeCurrent(bool aForce = false) {
if (IsDestroyed()) {
return false;
}
#ifdef DEBUG
PR_SetThreadPrivate(sCurrentGLContextTLS, this);