Re: [Mesa-dev] [PATCH mesa 3/3] egl: Update to Wayland 1.2 server API

2013-08-12 Thread Kristian Høgsberg
On Fri, Aug 9, 2013 at 10:44 AM, Mike Lothian wrote: > Hi > > I seem to have a missing symbol wayland_drm_buffer_get in libgbm.so.1 > > I'm pretty sure its related No, it's a different issue: https://bugs.freedesktop.org/show_bug.cgi?id=67962 Kristian > Regards > > Mike > > On 18 Jul 2013 13:15

Re: [Mesa-dev] [PATCH mesa 3/3] egl: Update to Wayland 1.2 server API

2013-08-12 Thread Kristian Høgsberg
On Wed, Aug 7, 2013 at 1:27 PM, Ian Romanick wrote: > On 08/07/2013 10:39 AM, Kristian Høgsberg wrote: >> >> On Thu, Jul 18, 2013 at 03:11:25PM +0300, Ander Conselvan de Oliveira >> wrote: >>> >>> Since Wayland 1.2, struct wl_buffer and a few functions are deprecated. >>> >>> References to wl_buff

Re: [Mesa-dev] [PATCH mesa 3/3] egl: Update to Wayland 1.2 server API

2013-08-09 Thread Mike Lothian
Hi I seem to have a missing symbol wayland_drm_buffer_get in libgbm.so.1 I'm pretty sure its related Regards Mike On 18 Jul 2013 13:15, "Ander Conselvan de Oliveira" < ander.conselvan.de.olive...@intel.com> wrote: > Since Wayland 1.2, struct wl_buffer and a few functions are deprecated. > > Re

Re: [Mesa-dev] [PATCH mesa 3/3] egl: Update to Wayland 1.2 server API

2013-08-07 Thread Ian Romanick
On 08/07/2013 10:39 AM, Kristian Høgsberg wrote: On Thu, Jul 18, 2013 at 03:11:25PM +0300, Ander Conselvan de Oliveira wrote: Since Wayland 1.2, struct wl_buffer and a few functions are deprecated. References to wl_buffer are replaced with wl_resource and some getter functions and calls to depr

Re: [Mesa-dev] [PATCH mesa 3/3] egl: Update to Wayland 1.2 server API

2013-08-07 Thread Kristian Høgsberg
On Thu, Jul 18, 2013 at 03:11:25PM +0300, Ander Conselvan de Oliveira wrote: > Since Wayland 1.2, struct wl_buffer and a few functions are deprecated. > > References to wl_buffer are replaced with wl_resource and some getter > functions and calls to deprecated functions are replaced with the prope

[Mesa-dev] [PATCH mesa 3/3] egl: Update to Wayland 1.2 server API

2013-07-18 Thread Ander Conselvan de Oliveira
Since Wayland 1.2, struct wl_buffer and a few functions are deprecated. References to wl_buffer are replaced with wl_resource and some getter functions and calls to deprecated functions are replaced with the proper new API. The latter changes are related to resource versioning. Signed-off-by: And