Bug 1079250 - SharedDataGonkOGL::DeleteTextureIfPresent to assert mCompositor rather than gl(). r=sotaro

This commit is contained in:
Nicolas Silva 2014-10-09 16:00:17 +02:00
Родитель fcec836573
Коммит 0836f2451a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -247,7 +247,7 @@ void
TextureSharedDataGonkOGL::DeleteTextureIfPresent()
{
if (mTexture) {
MOZ_ASSERT(gl());
MOZ_ASSERT(mCompositor);
if (gl() && gl()->MakeCurrent()) {
gl()->fDeleteTextures(1, &mTexture);
}