Bug 671916 - Fix windowless Flash Player painting crash; r=cjones

This commit is contained in:
Benoit Girard 2011-08-10 10:12:25 -04:00
Родитель 185a9d32ff
Коммит ea451bc5b1
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -3518,7 +3518,13 @@ PluginInstanceChild::SwapSurfaces()
mDoubleBufferCARenderer.ClearFrontSurface();
}
#endif //MOZ_WIDGET_COCOA
#else
if (mCurrentSurface && mBackSurface &&
(mCurrentSurface->GetSize() != mBackSurface->GetSize() ||
mCurrentSurface->GetContentType() != mBackSurface->GetContentType())) {
ClearCurrentSurface();
}
#endif
}
void