~ubuntu-branches/ubuntu/raring/mesa/raring

« back to all changes in this revision

Viewing changes to src/gallium/state_trackers/egl/wayland/native_wayland.c

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-01-22 11:54:09 UTC
  • mfrom: (1.7.13)
  • Revision ID: package-import@ubuntu.com-20130122115409-5e9xii2ee1whab3e
Tags: 9.0.2-0ubuntu1
* New upstream release.
* Decrease size of mesa's libgl1-mesa-dri again
  - re-enable 117-static-gallium.patch
  - add 118-dricore-gallium.patch to link against libdricore again

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
   callback = wl_display_sync(display->dpy);
58
58
   wl_callback_add_listener(callback, &sync_listener, &done);
59
59
   wl_proxy_set_queue((struct wl_proxy *) callback, display->queue);
60
 
   while (ret == 0 && !done)
 
60
   while (ret != -1 && !done)
61
61
      ret = wl_display_dispatch_queue(display->dpy, display->queue);
62
62
 
 
63
   if (!done)
 
64
      wl_callback_destroy(callback);
 
65
 
63
66
   return ret;
64
67
}
65
68