Fix extension name for EGLImage colorspace support.
The correct extension string is EGL_EXT_image_gl_colorspace, not
EGL_KHR_image_gl_colorspace. Qualcomm driver exposes both variants.
Bug: 32147090
Test: Used the application OpenGL ES CapsViewer from Play Store to
verify that the extension EGL_EXT_image_gl_colorspace is present
on Pixel XL.
Change-Id: I2f5e053b7210ac896f5122a46932b41e4db87c3b
diff --git a/opengl/libs/EGL/eglApi.cpp b/opengl/libs/EGL/eglApi.cpp
index d6c254d..ef6e9d0 100644
--- a/opengl/libs/EGL/eglApi.cpp
+++ b/opengl/libs/EGL/eglApi.cpp
@@ -94,7 +94,7 @@
char const * const gExtensionString =
"EGL_KHR_image " // mandatory
"EGL_KHR_image_base " // mandatory
- "EGL_KHR_image_gl_colorspace "
+ "EGL_EXT_image_gl_colorspace "
"EGL_KHR_image_pixmap "
"EGL_KHR_lock_surface "
"EGL_KHR_gl_colorspace "