Merge remote-tracking branch 'bnf/fixes-2'

dev
Kristian Høgsberg 14 years ago
commit 2468692c9f
  1. 3
      clients/simple-client.c
  2. 2
      compositor/compositor.c

@ -361,8 +361,7 @@ main(int argc, char **argv)
create_surface(&window);
init_gl(&window);
wl_display_frame_callback(display.display, window.surface,
redraw, &window);
redraw(window.surface, &window, 0);
while (true)
wl_display_iterate(display.display, display.mask);

@ -280,6 +280,8 @@ wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface)
wl_list_remove(&es->buffer_link);
wl_list_insert(surfaces_attached_to, &es->buffer_link);
} else {
if (es->image != EGL_NO_IMAGE_KHR)
ec->destroy_image(ec->display, es->image);
es->image = ec->create_image(ec->display, NULL,
EGL_WAYLAND_BUFFER_WL,
buffer, NULL);

Loading…
Cancel
Save