diff options
author | Mathias Agopian <mathias@google.com> | 2012-10-16 21:26:43 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2012-10-16 21:26:43 -0700 |
commit | a33d161250b0787f4e7a3f3f09244451e22496ce (patch) | |
tree | 651e3640c08d0bc6b5e739ce03335e80db05080b /libs | |
parent | 05ad745ff63ed3bcdb86d42290ddc2ee214fe90f (diff) | |
download | frameworks_base-a33d161250b0787f4e7a3f3f09244451e22496ce.zip frameworks_base-a33d161250b0787f4e7a3f3f09244451e22496ce.tar.gz frameworks_base-a33d161250b0787f4e7a3f3f09244451e22496ce.tar.bz2 |
workaround to unbreak the build (deadlock during boot)
bug: 7363206
Change-Id: Ie79c309e367ba07336a5299af9fd59c6bd2390e7
Diffstat (limited to 'libs')
-rw-r--r-- | libs/hwui/TextureCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/TextureCache.cpp b/libs/hwui/TextureCache.cpp index 431367a..7fb86ee 100644 --- a/libs/hwui/TextureCache.cpp +++ b/libs/hwui/TextureCache.cpp @@ -75,7 +75,7 @@ void TextureCache::init() { mDebugEnabled = readDebugLevel() & kDebugCaches; - mHasNPot = Caches::getInstance().extensions.hasNPot(); + mHasNPot = false; //Caches::getInstance().extensions.hasNPot(); } /////////////////////////////////////////////////////////////////////////////// |