From fd0d2523a33620b36cd478925ddac5cf70f9c409 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 9 May 2017 15:33:21 -0700 Subject: [PATCH] glamor_egl: Stop saving the EGL major/minor version. We don't use them for anything. Signed-off-by: Eric Anholt Reviewed-by: Keith Packard --- glamor/glamor_egl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/glamor/glamor_egl.c b/glamor/glamor_egl.c index 354c30f68..193a04409 100644 --- a/glamor/glamor_egl.c +++ b/glamor/glamor_egl.c @@ -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;