wayland: Don't pass the shell and compositor down to Cogl

The Wayland 1.0 API allows orthoganal components of an application to
query the shell and compositor themselves by querying their own
wl_registry. The corresponding API in Cogl has been removed so Clutter
shouldn't call it anymore.

https://bugzilla.gnome.org/show_bug.cgi?id=703878
This commit is contained in:
Neil Roberts 2013-07-04 13:32:14 +01:00 committed by Emmanuele Bassi
parent 6c66148faf
commit 78f20627ac

View File

@ -244,10 +244,6 @@ clutter_backend_wayland_get_renderer (ClutterBackend *backend,
cogl_wayland_renderer_set_foreign_display (renderer, cogl_wayland_renderer_set_foreign_display (renderer,
backend_wayland->wayland_display); backend_wayland->wayland_display);
cogl_wayland_renderer_set_foreign_compositor (renderer,
backend_wayland->wayland_compositor);
cogl_wayland_renderer_set_foreign_shell (renderer,
backend_wayland->wayland_shell);
return renderer; return renderer;
} }