bug 751678: Low-res screenshot happens when Fennec is in the background r=mfinkle a=blocking-fennec

This commit is contained in:
Brad Lassey 2012-05-04 09:19:01 -04:00
Родитель 15a0969a86
Коммит 875d4d8282
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -2248,6 +2248,9 @@ public class GeckoAppShell
}
public static void screenshotWholePage(Tab tab) {
if (GeckoApp.mAppContext.isApplicationInBackground())
return;
if (sMaxTextureSize == 0) {
int[] maxTextureSize = new int[1];
GLES20.glGetIntegerv(GLES20.GL_MAX_TEXTURE_SIZE, maxTextureSize, 0);