aboutsummaryrefslogtreecommitdiff
path: root/examples/text-input.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-01-04 11:30:30 +0100
committerSimon Ser <contact@emersion.fr>2021-01-04 11:30:30 +0100
commit198560fc1fe5e09f539c278b190eaf44b1402deb (patch)
treec3f43ba304519312879c61153dffb34b8c822830 /examples/text-input.c
parent9714638f3b521e10dc4649d62be41f6a5771ee38 (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/text-input.c')
-rw-r--r--examples/text-input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/text-input.c b/examples/text-input.c
index 6f555a67..cc89cbf4 100644
--- a/examples/text-input.c
+++ b/examples/text-input.c
@@ -363,8 +363,8 @@ int main(int argc, char **argv) {
zwp_text_input_v3_add_listener(text_input, &text_input_listener, NULL);
-
- 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 =