examples: remove "major" and "minor" from egl_common.c

Remove "major" and "minor" from egl_common.c as they are not used by the examples that use egl_common.c.
This commit is contained in:
Brandon Dowdy 2021-01-29 23:00:58 +00:00 committed by Simon Ser
parent 7b50f5d324
commit c89dba9435
1 changed files with 1 additions and 2 deletions

View File

@ -81,8 +81,7 @@ bool egl_init(struct wl_display *display) {
goto error;
}
EGLint major, minor;
if (eglInitialize(egl_display, &major, &minor) == EGL_FALSE) {
if (eglInitialize(egl_display, NULL, NULL) == EGL_FALSE) {
wlr_log(WLR_ERROR, "Failed to initialize EGL");
goto error;
}