diff options
author | Jamie Gennis <jgennis@google.com> | 2011-11-09 15:35:34 -0800 |
---|---|---|
committer | Jamie Gennis <jgennis@google.com> | 2011-11-11 13:17:03 -0800 |
commit | c42fcf05ce253d5342993b28c412be16e61efffb (patch) | |
tree | a0c6c39a4614a0352df7f1cf3c4aa12303053c32 /opengl/libs/EGL/eglApi.cpp | |
parent | 8e540328fc524727c6ced05c2a3450c85f6cbdbe (diff) | |
download | frameworks_native-c42fcf05ce253d5342993b28c412be16e61efffb.zip frameworks_native-c42fcf05ce253d5342993b28c412be16e61efffb.tar.gz frameworks_native-c42fcf05ce253d5342993b28c412be16e61efffb.tar.bz2 |
EGL: add the ANDROID suffix to the blob cache ext
This change adds the ANDROID suffix to the all the types and functions
defined by the EGL_ANDROID_blob_cache extension.
Change-Id: I087875b96d9a7053efb9c8d5614f9f765eed799d
Diffstat (limited to 'opengl/libs/EGL/eglApi.cpp')
-rw-r--r-- | opengl/libs/EGL/eglApi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/eglApi.cpp b/opengl/libs/EGL/eglApi.cpp index 60ac34b..63f02e4 100644 --- a/opengl/libs/EGL/eglApi.cpp +++ b/opengl/libs/EGL/eglApi.cpp @@ -860,7 +860,7 @@ __eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname) // The EGL_ANDROID_blob_cache extension should not be exposed to // applications. It is used internally by the Android EGL layer. - if (!strcmp(procname, "eglSetBlobCacheFuncs")) { + if (!strcmp(procname, "eglSetBlobCacheFuncsANDROID")) { return NULL; } |