libEGL: select pixel format by EGL_NATIVE_VISUAL_ID
We need this workaround until Mesa supports HAL_PIXEL_FORMAT_RGBA_8888.
This commit is contained in:
parent
770ff1cf70
commit
54c95b1a83
@ -462,8 +462,7 @@ EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
|
|||||||
// modify the EGLconfig's format before setting the native window's
|
// modify the EGLconfig's format before setting the native window's
|
||||||
// format.
|
// format.
|
||||||
|
|
||||||
// by default, just pick RGBA_8888
|
EGLint format;
|
||||||
EGLint format = HAL_PIXEL_FORMAT_RGBA_8888;
|
|
||||||
android_dataspace dataSpace = HAL_DATASPACE_UNKNOWN;
|
android_dataspace dataSpace = HAL_DATASPACE_UNKNOWN;
|
||||||
|
|
||||||
#if WORKAROUND_BUG_10194508
|
#if WORKAROUND_BUG_10194508
|
||||||
@ -478,7 +477,12 @@ EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
|
|||||||
cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
|
cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_ALPHA_SIZE, &a);
|
||||||
if (a > 0) {
|
if (a > 0) {
|
||||||
// alpha-channel requested, there's really only one suitable format
|
// alpha-channel requested, there's really only one suitable format
|
||||||
|
if (!cnx->egl.eglGetConfigAttrib(iDpy, config, EGL_NATIVE_VISUAL_ID,
|
||||||
|
&format)) {
|
||||||
|
ALOGE("eglGetConfigAttrib(EGL_NATIVE_VISUAL_ID) failed: %#x",
|
||||||
|
eglGetError());
|
||||||
format = HAL_PIXEL_FORMAT_RGBA_8888;
|
format = HAL_PIXEL_FORMAT_RGBA_8888;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
EGLint r, g, b;
|
EGLint r, g, b;
|
||||||
r = g = b = 0;
|
r = g = b = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user