diff options
author | Simon Ser <contact@emersion.fr> | 2021-01-04 11:30:30 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-01-04 11:30:30 +0100 |
commit | 198560fc1fe5e09f539c278b190eaf44b1402deb (patch) | |
tree | c3f43ba304519312879c61153dffb34b8c822830 /examples/toplevel-decoration.c | |
parent | 9714638f3b521e10dc4649d62be41f6a5771ee38 (diff) |
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: 037710b1d428 ("render/egl: support config-less wlr_egl")
Diffstat (limited to 'examples/toplevel-decoration.c')
-rw-r--r-- | examples/toplevel-decoration.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/toplevel-decoration.c b/examples/toplevel-decoration.c index 3fb90d18..4f309feb 100644 --- a/examples/toplevel-decoration.c +++ b/examples/toplevel-decoration.c @@ -218,7 +218,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 = |