• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

frameworks/base


Commit MetaInfo

Révision0a017e126e0c070d528472e57e1ab272c2a76670 (tree)
l'heure2015-12-22 13:13:50
AuteurMatt Gumbel <matthew.k.gumbel@linu...>
CommiterChih-Wei Huang

Message de Log

ImageWallpaper: don't throw-up when EGL init fails

Just fall back to non-GL path instead.

Change-Id: Icabee5b7cadd49942e9c920a7ff49a54fc8bea9f
For: AXIA-991
Signed-off-by: Matt Gumbel <matthew.k.gumbel@linux.intel.com>

Change Summary

Modification

--- a/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java
+++ b/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java
@@ -668,7 +668,7 @@ public class ImageWallpaper extends WallpaperService {
668668
669669 mEglConfig = chooseEglConfig();
670670 if (mEglConfig == null) {
671- throw new RuntimeException("eglConfig not initialized");
671+ return false;
672672 }
673673
674674 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);