<div dir="ltr">Hi,<br><br>I'm trying to create a second Wayland display on Chromium OS(wayland-1):<br>#include <wayland-server.h><br>int main(int argc, char *argv[]) {<br>  struct wl_display *display = wl_display_create();<br>  const char *socket = wl_display_add_socket_auto(display);<br>  wl_display_run(display);<br>  return 0;<br>}<br><br>But I can't see second Wayland display.<br>I'm trying to launch test client <br>XDG_RUNTIME_DIR=/run/chrome WAYLAND_DISPLAY=wayland-1 testwaylandclient<br>But I can't see test client window.<br>If I'm trying to launch client with WAYLAND_DISPLAY=wayland-0 work good, I see test client window<br><br>Maybe I need to run a second display with the Wayland compositor<br><br>Serg</div>