diff options
Diffstat (limited to 'examples/touch.c')
-rw-r--r-- | examples/touch.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/touch.c b/examples/touch.c index 40fc4ca2..db025942 100644 --- a/examples/touch.c +++ b/examples/touch.c @@ -120,6 +120,11 @@ int main(int argc, char *argv[]) { wlr_texture_upload_pixels(state.cat_texture, WL_SHM_FORMAT_ARGB8888, cat_tex.width, cat_tex.width, cat_tex.height, cat_tex.pixel_data); + if (!wlr_backend_start(compositor.backend)) { + wlr_log(L_ERROR, "Failed to start backend"); + wlr_backend_destroy(compositor.backend); + exit(1); + } wl_display_run(compositor.display); wlr_texture_destroy(state.cat_texture); |