summaryrefslogtreecommitdiffstats
path: root/opengl
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2012-05-21 14:01:37 -0700
committerMathias Agopian <mathias@google.com>2012-05-21 14:02:53 -0700
commitcc2b1560e87369676a2d13f17bd1ff4021a91819 (patch)
treebd0228ba90f852f36e2292e985e59dc37d383cab /opengl
parent7e477bfe11f8bb31622353b64e85721df3cf9702 (diff)
downloadframeworks_native-cc2b1560e87369676a2d13f17bd1ff4021a91819.zip
frameworks_native-cc2b1560e87369676a2d13f17bd1ff4021a91819.tar.gz
frameworks_native-cc2b1560e87369676a2d13f17bd1ff4021a91819.tar.bz2
fix EGL_CLIENT_STRING
it should read OpenGL_ES (with an underscore) Bug: 6529643 Change-Id: I7caf07793bffe5a8dcceaff496a222077486fc87
Diffstat (limited to 'opengl')
-rw-r--r--opengl/libagl/egl.cpp2
-rw-r--r--opengl/libs/EGL/egl_display.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/opengl/libagl/egl.cpp b/opengl/libagl/egl.cpp
index 92d32a2..e6d065a 100644
--- a/opengl/libagl/egl.cpp
+++ b/opengl/libagl/egl.cpp
@@ -794,7 +794,7 @@ struct config_management_t {
#define VERSION_MINOR 2
static char const * const gVendorString = "Google Inc.";
static char const * const gVersionString = "1.2 Android Driver 1.2.0";
-static char const * const gClientApiString = "OpenGL ES";
+static char const * const gClientApiString = "OpenGL_ES";
static char const * const gExtensionsString =
"EGL_KHR_image_base "
// "KHR_image_pixmap "
diff --git a/opengl/libs/EGL/egl_display.cpp b/opengl/libs/EGL/egl_display.cpp
index 2cd1a93..a46aa38 100644
--- a/opengl/libs/EGL/egl_display.cpp
+++ b/opengl/libs/EGL/egl_display.cpp
@@ -32,7 +32,7 @@ namespace android {
static char const * const sVendorString = "Android";
static char const * const sVersionString = "1.4 Android META-EGL";
-static char const * const sClientApiString = "OpenGL ES";
+static char const * const sClientApiString = "OpenGL_ES";
// this is the list of EGL extensions that are exposed to applications
// some of them are mandatory because used by the ANDROID system.