diff options
author | Jamie Gennis <jgennis@google.com> | 2011-11-17 17:10:32 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-11-17 17:10:32 -0800 |
commit | 0f83b2f976b5974546182b1b8483c9956aee8496 (patch) | |
tree | 9c7f72cd675c550e44a949c2df109d61da4af0c5 /opengl/libs/EGL | |
parent | 6ebf5e1f4a61e34ddc142f97985e6441ebd3c32c (diff) | |
parent | 9f43009177520c89ca03789993634a3689f41d10 (diff) | |
download | frameworks_native-0f83b2f976b5974546182b1b8483c9956aee8496.zip frameworks_native-0f83b2f976b5974546182b1b8483c9956aee8496.tar.gz frameworks_native-0f83b2f976b5974546182b1b8483c9956aee8496.tar.bz2 |
Merge "EGL: fix blob cache extension detection" into ics-mr1
Diffstat (limited to 'opengl/libs/EGL')
-rw-r--r-- | opengl/libs/EGL/egl_cache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/egl_cache.cpp b/opengl/libs/EGL/egl_cache.cpp index 13a4929..fe32d43 100644 --- a/opengl/libs/EGL/egl_cache.cpp +++ b/opengl/libs/EGL/egl_cache.cpp @@ -85,7 +85,7 @@ void egl_cache_t::initialize(egl_display_t *display) { bool atStart = !strncmp(BC_EXT_STR " ", exts, bcExtLen+1); bool atEnd = (bcExtLen+1) < extsLen && !strcmp(" " BC_EXT_STR, exts + extsLen - (bcExtLen+1)); - bool inMiddle = strstr(" " BC_EXT_STR " ", exts); + bool inMiddle = strstr(exts, " " BC_EXT_STR " "); if (equal || atStart || atEnd || inMiddle) { PFNEGLSETBLOBCACHEFUNCSANDROIDPROC eglSetBlobCacheFuncsANDROID; eglSetBlobCacheFuncsANDROID = |