clients: Set title for all shell surface demos.

Scott Moreau 12 years ago committed by Kristian Høgsberg
parent 3e3862c3bc
commit 01a9f1b992
  1. 1
      clients/flower.c
  2. 2
      clients/simple-egl.c
  3. 2
      clients/simple-shm.c
  4. 1
      clients/simple-touch.c

@ -180,6 +180,7 @@ int main(int argc, char *argv[])
flower.display = d;
flower.window = window_create(d);
flower.widget = window_add_widget(flower.window, &flower);
window_set_title(flower.window, "Flower");
widget_set_resize_handler(flower.widget, resize_handler);
widget_set_redraw_handler(flower.widget, redraw_handler);

@ -317,6 +317,8 @@ create_surface(struct window *window)
display->egl.conf,
window->native, NULL);
wl_shell_surface_set_title(window->shell_surface, "simple-egl");
ret = eglMakeCurrent(window->display->egl.dpy, window->egl_surface,
window->egl_surface, window->display->egl.ctx);
assert(ret == EGL_TRUE);

@ -142,6 +142,8 @@ create_window(struct display *display, int width, int height)
wl_shell_surface_add_listener(window->shell_surface,
&shell_surface_listener, window);
wl_shell_surface_set_title(window->shell_surface, "simple-shm");
wl_shell_surface_set_toplevel(window->shell_surface);
return window;

@ -301,6 +301,7 @@ touch_create(int width, int height)
}
wl_surface_set_user_data(touch->surface, touch);
wl_shell_surface_set_title(touch->shell_surface, "simple-touch");
memset(touch->data, 64, width * height * 4);
wl_surface_attach(touch->surface, touch->buffer, 0, 0);

Loading…
Cancel
Save