Re: [Mesa-dev] [PATCH 2/2] pipe-loader: Add support for render nodes v2

2014-02-03 Thread David Herrmann
Hi On Fri, Jan 31, 2014 at 9:58 PM, Tom Stellard wrote: > On Thu, Jan 30, 2014 at 10:16:41PM +, Emil Velikov wrote: >> On 27/01/14 16:13, Tom Stellard wrote: >> > From: Tom Stellard >> > >> > v2: >> >- Add missing call to pipe_loader_drm_release() >> >- Fix render node macros >> >

Re: [Mesa-dev] [PATCH 2/2] pipe-loader: Add support for render nodes v2

2014-01-28 Thread David Herrmann
Hi Tom On Mon, Jan 27, 2014 at 5:13 PM, Tom Stellard wrote: > From: Tom Stellard > > v2: >- Add missing call to pipe_loader_drm_release() >- Fix render node macros >- Drop render-node configure option Patch looks fine to me, but I lack mesa-insights to really comment on it. But I'd

Re: [Mesa-dev] [PATCH 1/2] winsys/radeon: Add a work around for drmGetVersion() when using render nodes

2013-11-03 Thread David Herrmann
Hi Tom On Tue, Oct 29, 2013 at 9:00 PM, Tom Stellard wrote: > From: Tom Stellard > > DRM_IOCTL_VERSION is not currently a legal ioctl for render nodes, so we > need to hard code the drm version when drmGetVersion() returns NULL. > --- This is already in 3.12: https://git.kernel.org/cgit/linu

Re: [Mesa-dev] [PATCH 2/2] pipe-loader: Add support for render nodes

2013-10-30 Thread David Herrmann
Hi Tom On Tue, Oct 29, 2013 at 9:00 PM, Tom Stellard wrote: > From: Tom Stellard > > You can use the --enable-pipe-loader-render-nodes configure flag to > make the pipe-loader use render nodes for talking with the device. > --- > configure.ac | 6 ++ > src

Re: [Mesa-dev] [PATCH 1/2] winsys/radeon: Add a work around for drmGetVersion() when using render nodes

2013-10-30 Thread David Herrmann
Hi Tom On Tue, Oct 29, 2013 at 9:00 PM, Tom Stellard wrote: > From: Tom Stellard > > DRM_IOCTL_VERSION is not currently a legal ioctl for render nodes, so we > need to hard code the drm version when drmGetVersion() returns NULL. > --- > src/gallium/winsys/radeon/drm/radeon_drm_winsys.c | 36 >

Re: [Mesa-dev] FOSDEM2013: DevRoom or not?

2012-12-27 Thread David Herrmann
Hi Michael On Sat, Dec 1, 2012 at 3:54 AM, Michael Hasselmann wrote: > On Fri, 2012-09-28 at 23:51 +0200, Luc Verhaegen wrote: >> We still have, i hope (depends on what the FOSDEM organizers have left >> for us), 6 slots fully open: first come first serve, and the earlier >> bird gets the nicer s

[Mesa-dev] [BUG] gallium-gbm-target requires drm-pipe-loader

2012-06-10 Thread David Herrmann
Hi The recently added gbm gallium target (./src/gallium/targets/gbm/gbm.c) requires HAVE_DRM_PIPE_LOADER for pipe_loader_drm_probe(). Otherwise, the compiler fails with an unresolved function-name. However, HAVE_DRM_PIPE_LOADER is not defined when compiling i915 only, so I need to compile gallium

[Mesa-dev] [PATCH RESEND] egl-fbdev: Fix compile-error by including errno.h

2012-04-30 Thread David Herrmann
We use errno and EINVAL so include errno.h. This patch introduced this bug: http://cgit.freedesktop.org/mesa/mesa/commit/src/gallium/state_trackers/egl/fbdev/native_fbdev.c?id=b60120608f6ddf4098bc324363197c979ee04cb7 Signed-off-by: David Herrmann Cc: Chia-I Wu Cc: Dave Airlie Cc: Adam Jackson

[Mesa-dev] [PATCH RESEND] egl-fbdev: Fix compile-error by including errno.h

2012-04-22 Thread David Herrmann
27;ed mesa-dev and the people who reviewed the original patch this time as I have no idea who I need to send this to. Thanks David ** egl-fbdev: Fix compile-error by including errno.h We use errno and EINVAL so include errno.h. Signed-off-by: Davi