diff options
| author | Jamie Gennis <jgennis@google.com> | 2011-11-04 15:10:11 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-11-04 15:10:11 -0700 |
| commit | 2ab7ec90e4a6f21bee7cbfebbd751d32d4cf9e03 (patch) | |
| tree | 6c33d92512af062444857ccb4dbbf17f459962bf /opengl/libs/EGL/egl_display.cpp | |
| parent | 960177ae394a466d765a2dc171e136f9fdea06b6 (diff) | |
| parent | 0dc908ce71cb643dfb41598be9f358baec93fc41 (diff) | |
| download | frameworks_base-2ab7ec90e4a6f21bee7cbfebbd751d32d4cf9e03.zip frameworks_base-2ab7ec90e4a6f21bee7cbfebbd751d32d4cf9e03.tar.gz frameworks_base-2ab7ec90e4a6f21bee7cbfebbd751d32d4cf9e03.tar.bz2 | |
Merge "EGL: Add stubs for EGL_ANDROID_blob_cache" into ics-mr1
Diffstat (limited to 'opengl/libs/EGL/egl_display.cpp')
| -rw-r--r-- | opengl/libs/EGL/egl_display.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opengl/libs/EGL/egl_display.cpp b/opengl/libs/EGL/egl_display.cpp index 83aafa6..0f92864 100644 --- a/opengl/libs/EGL/egl_display.cpp +++ b/opengl/libs/EGL/egl_display.cpp @@ -14,6 +14,7 @@ ** limitations under the License. */ +#include "egl_cache.h" #include "egl_display.h" #include "egl_object.h" #include "egl_tls.h" @@ -170,6 +171,8 @@ EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { } } + egl_cache_t::get()->initialize(this); + EGLBoolean res = EGL_FALSE; for (int i = 0; i < IMPL_NUM_IMPLEMENTATIONS; i++) { egl_connection_t* const cnx = &gEGLImpl[i]; |
