Disable GLES 2.x rendering
Bug 10340705 Change-Id: I91f3baf0d79655d8d031c100d0b116f745c2fbef
This commit is contained in:
parent
892f22dcb9
commit
6db4ff6218
@ -42,7 +42,7 @@ RenderEngine* RenderEngine::create(EGLDisplay display, EGLConfig config) {
|
|||||||
EGL_NONE, EGL_NONE
|
EGL_NONE, EGL_NONE
|
||||||
};
|
};
|
||||||
|
|
||||||
EGLContext ctxt = eglCreateContext(display, config, NULL, contextAttributes);
|
EGLContext ctxt = EGL_NO_CONTEXT; // eglCreateContext(display, config, NULL, contextAttributes);
|
||||||
if (ctxt == EGL_NO_CONTEXT) {
|
if (ctxt == EGL_NO_CONTEXT) {
|
||||||
// maybe ES 2.x is not supported
|
// maybe ES 2.x is not supported
|
||||||
ALOGW("can't create an ES 2.x context, trying 1.x");
|
ALOGW("can't create an ES 2.x context, trying 1.x");
|
||||||
|
Loading…
Reference in New Issue
Block a user