Merge "Fix suspend crash issue on no GPU platform." am: 175621f517

am: 98b07f6b55

Change-Id: If835dcbebeda79d67c8afeeaafeae0b76d869df4
This commit is contained in:
Ivan.liu
2016-08-25 18:15:44 +00:00
committed by android-build-merger

View File

@@ -547,6 +547,11 @@ final class ColorFade {
logEglError("eglChooseConfig");
return false;
}
if (numEglConfigs[0] <= 0) {
Slog.e(TAG, "no valid config found");
return false;
}
mEglConfig = eglConfigs[0];
}