[PATCH xserver 1/4] glamor_egl: Stop saving the EGL major/minor version.
Eric Anholt
eric at anholt.net
Thu Jun 1 18:14:43 UTC 2017
We don't use them for anything.
Signed-off-by: Eric Anholt <eric at anholt.net>
---
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 354c30f68ea5..193a04409ee8 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;
--
2.11.0
More information about the xorg-devel
mailing list