From: Ian Romanick Date: Tue, 15 Jan 2013 22:17:46 +0000 (-0800) Subject: egl/dri2: Fix typo in the previous commit X-Git-Tag: android-x86-4.4-r1~1816 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d786bf2c2acbafe2ac32e7fd5b8f9a6b09f3d968;p=android-x86%2Fexternal-mesa.git egl/dri2: Fix typo in the previous commit I didn't notice this due to a noobed piglit run. It wasn't previously noticed because the patch was only run on a driver that supported GLES3. Signed-off-by: Ian Romanick --- diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index 09659597044..351fbf48278 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -742,7 +742,7 @@ dri2_create_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf, api = __DRI_API_GLES; break; case 2: - api = __DRI_API_GLES3; + api = __DRI_API_GLES2; break; case 3: api = __DRI_API_GLES3;