examples: request an EGL config

Client examples using wlr_egl would fail with EGL_BAD_CONFIG because they
need an EGL config. Set the config attribs to a non-NULL value to make
sure wlr_egl creates an EGL config.

Fixes: 037710b1d4 ("render/egl: support config-less wlr_egl")
This commit is contained in:
Simon Ser 2021-01-04 11:30:30 +01:00
parent 9714638f3b
commit 198560fc1f
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
7 changed files with 14 additions and 8 deletions

View file

@ -224,7 +224,8 @@ int main(int argc, char **argv) {
return EXIT_FAILURE;
}
wlr_egl_init(&egl, EGL_PLATFORM_WAYLAND_EXT, display, NULL, 0);
EGLint attribs[] = { EGL_NONE };
wlr_egl_init(&egl, EGL_PLATFORM_WAYLAND_EXT, display, attribs, 0);
struct wl_surface *surface = wl_compositor_create_surface(compositor);
struct xdg_surface *xdg_surface =