glamor_egl: Stop saving the EGL major/minor version.

We don't use them for anything.

Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Eric Anholt 2017-05-09 15:33:21 -07:00
parent 1f38a31ed3
commit fd0d2523a3
1 changed files with 1 additions and 3 deletions

View File

@ -50,7 +50,6 @@
struct glamor_egl_screen_private {
EGLDisplay display;
EGLContext context;
EGLint major, minor;
char *device_path;
CreateScreenResourcesProcPtr CreateScreenResources;
@ -648,8 +647,7 @@ glamor_egl_init(ScrnInfoPtr scrn, int fd)
goto error;
}
if (!eglInitialize
(glamor_egl->display, &glamor_egl->major, &glamor_egl->minor)) {
if (!eglInitialize(glamor_egl->display, NULL, NULL)) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR, "eglInitialize() failed\n");
glamor_egl->display = EGL_NO_DISPLAY;
goto error;