Codebase list wayland / e614d79
wayland-server: Finally remove deprecated struct wl_buffer definition commit d94a8722cb29d8b897672be66ff3c9ff79eab6fe warned this was coming, back in 2013. I've seen libraries that have wayland client and server using functions in the same file. Since struct wl_buffer still exists as an opaque entity in client code, the vestigial deprecated wl_buffer from the server include will generate warnings when not building with WL_HIDE_DEPRECATED. Signed-off-by: Derek Foreman <derekf@osg.samsung.com> Acked-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk> Reviewed-by: Daniel Stone <daniels@collabora.com> Derek Foreman authored 6 years ago Derek Foreman committed 5 years ago
1 changed file(s) with 0 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
6969 void *data;
7070 };
7171
72 struct wl_buffer {
73 struct wl_resource resource;
74 int32_t width, height;
75 uint32_t busy_count;
76 } WL_DEPRECATED;
77
7872 uint32_t
7973 wl_client_add_resource(struct wl_client *client,
8074 struct wl_resource *resource) WL_DEPRECATED;