diff options
author | Michael I. Gold <gold@nvidia.com> | 2011-01-13 10:13:15 -0800 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2011-01-16 18:02:52 -0800 |
commit | 3ece010a4b09c82b5d59ae62dbed4957f665902c (patch) | |
tree | 6ebeab6f16dab4a6045da0fb67b8f2361dac7597 /opengl | |
parent | 6e72ff9082f82885d738f637d40bfe43d267107a (diff) | |
download | frameworks_base-3ece010a4b09c82b5d59ae62dbed4957f665902c.zip frameworks_base-3ece010a4b09c82b5d59ae62dbed4957f665902c.tar.gz frameworks_base-3ece010a4b09c82b5d59ae62dbed4957f665902c.tar.bz2 |
egl: expose EGLimage extensions
Add EGL_KHR_gl_texture_cubemap_image and EGL_KHR_gl_renderbuffer_image
to the static EGL extension string since these require no new APIs
beyond what is already required.
Change-Id: I2d1fde86b19bb9eee46b3b977f51784a17cfcc3c
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/libs/EGL/egl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp index 386cc5d..0e3de06 100644 --- a/opengl/libs/EGL/egl.cpp +++ b/opengl/libs/EGL/egl.cpp @@ -62,6 +62,8 @@ static char const * const gExtensionString = "EGL_KHR_image_base " "EGL_KHR_image_pixmap " "EGL_KHR_gl_texture_2D_image " + "EGL_KHR_gl_texture_cubemap_image " + "EGL_KHR_gl_renderbuffer_image " "EGL_KHR_fence_sync " "EGL_ANDROID_image_native_buffer " "EGL_ANDROID_swap_rectangle " |