am cc2b1560: fix EGL_CLIENT_STRING

* commit 'cc2b1560e87369676a2d13f17bd1ff4021a91819':
  fix EGL_CLIENT_STRING
This commit is contained in:
Mathias Agopian 2012-05-21 14:15:00 -07:00 committed by Android Git Automerger
commit 4ae4e6f2da
2 changed files with 2 additions and 2 deletions

View File

@ -794,7 +794,7 @@ struct config_management_t {
#define VERSION_MINOR 2 #define VERSION_MINOR 2
static char const * const gVendorString = "Google Inc."; static char const * const gVendorString = "Google Inc.";
static char const * const gVersionString = "1.2 Android Driver 1.2.0"; 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 = static char const * const gExtensionsString =
"EGL_KHR_image_base " "EGL_KHR_image_base "
// "KHR_image_pixmap " // "KHR_image_pixmap "

View File

@ -32,7 +32,7 @@ namespace android {
static char const * const sVendorString = "Android"; static char const * const sVendorString = "Android";
static char const * const sVersionString = "1.4 Android META-EGL"; 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 // this is the list of EGL extensions that are exposed to applications
// some of them are mandatory because used by the ANDROID system. // some of them are mandatory because used by the ANDROID system.