Fail if we can't create the compositor.
This commit is contained in:
parent
122912c69b
commit
841883b43c
@ -1035,7 +1035,11 @@ int main(int argc, char *argv[])
|
||||
display = wl_display_create();
|
||||
|
||||
ec = egl_compositor_create(display);
|
||||
|
||||
if (ec == NULL) {
|
||||
fprintf(stderr, "failed to create compositor\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
wl_display_set_compositor(display, &ec->base);
|
||||
|
||||
if (wl_display_add_socket(display, socket_name)) {
|
||||
|
@ -362,6 +362,10 @@ int main(int argc, char *argv[])
|
||||
display = wl_display_create();
|
||||
|
||||
gc = glx_compositor_create(display);
|
||||
if (gc == NULL) {
|
||||
fprintf(stderr, "failed to create compositor\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
wl_display_set_compositor(display, &gc->base);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user