Re: [PATCH 1/5] drm/vgem: virtual GEM provider

2012-02-20 Thread Ben Widawsky
On Thu, 16 Feb 2012 05:52:12 -0800 (PST) Jakob Bornecrantz wrote: > - Original Message - > > From: Adam Jackson > > > > This is about as minimal of a virtual GEM service as possible. My > > plan is to use this with non-native-3D hardware for buffer sharing > > between X and DRI. > > >

[Bug 46323] RS480 is not capable of gles blur anymore after update to mesa 8.0

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=46323 --- Comment #2 from Ben Gouhier 2012-02-20 14:54:23 PST --- I dont know, I am no expert :(. But I can try : what do you need me to do? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this ma

[PATCH] drm/i915: Fix single msg gmbus_xfers writes

2012-02-20 Thread Daniel Kurtz
On Feb 15, 2012 6:48 PM, "Daniel Vetter" wrote: > > On Thu, Feb 09, 2012 at 12:03:17PM -0800, Benson Leung wrote: > > gmbus_xfer with a single message (particularly a single message write) would > > set Bus Cycle Select to 100b, the Gen Stop cycle, instead of 101b, > > No Index, Stop cycle. This w

[PATCH 1/5] drm/usb: add a busid implementation

2012-02-20 Thread Sascha Hauer
Hi Dave, On Mon, Feb 20, 2012 at 04:13:45PM +, Dave Airlie wrote: > From: Dave Airlie > > This adds an implementation for the busid callback so userspace can > distinguish > usb devices better. Is it really worth it to add such an interface from the old days for new drivers? I would assume

[PATCH 4/5] drm/vgem: getparam ioctl

2012-02-20 Thread Ben Widawsky
On Thu, 16 Feb 2012 07:23:52 + Dave Airlie wrote: > On Wed, Feb 15, 2012 at 9:22 PM, Adam Jackson wrote: > > On 2/8/12 6:19 PM, Ben Widawsky wrote: > >> > >> Similar to i915, it's nice to be able to query this device uniquely and > >> get some info > >> > >> Signed-off-by: Ben Widawsky > > >

[PATCH 1/5] drm/vgem: virtual GEM provider

2012-02-20 Thread Ben Widawsky
On Thu, 16 Feb 2012 05:52:12 -0800 (PST) Jakob Bornecrantz wrote: > - Original Message - > > From: Adam Jackson > > > > This is about as minimal of a virtual GEM service as possible. My > > plan is to use this with non-native-3D hardware for buffer sharing > > between X and DRI. > > >

[PATCH] drm/radeon/kms: properly set accel working flag and bailout when false

2012-02-20 Thread j.gli...@gmail.com
From: Jerome Glisse If accel is not working many subsystem such as the ib pool might not be initialized properly that can lead to segfault inside kernel when cs ioctl is call with non working acceleration. To avoid this make sure the accel working flag is false when an error in GPU startup happen

Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-20 Thread Guennadi Liakhovetski
On Fri, 17 Feb 2012, Laurent Pinchart wrote: [snip] > *** Synchronous pipeline changes *** > > Goal: Create an API to apply complex changes to a video pipeline atomically. > > Needed for complex camera use cases. On the DRM/KMS side, the approach is to > use one big ioctl to configure th

[Bug 46274] Reading from /sys/kernel/debug/dri/0/radeon_ring_cp* cause null-pointer dereference

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=46274 --- Comment #1 from Michel D?nzer 2012-02-20 09:24:58 PST --- Created attachment 57337 --> https://bugs.freedesktop.org/attachment.cgi?id=57337 Only create additional ring info files on Cayman or newer This patch should not create the additio

Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-20 Thread Guennadi Liakhovetski
On Fri, 17 Feb 2012, Daniel Vetter wrote: > On Fri, Feb 17, 2012 at 12:25:51AM +0100, Laurent Pinchart wrote: > > Hello everybody, > > > > First of all, I would like to thank all the attendees for their > > participation > > in the mini-summit that helped make the meeting a success. > > > > He

[Bug 45366] Radeon gpu lockups

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=45366 --- Comment #3 from Ernst Sj?strand 2012-02-20 08:25:19 PST --- So you don't run a compositing windowmanager? killall -9 compiz get's me back to a fully working desktop. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=emai

[Bug 45366] Radeon gpu lockups

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=45366 --- Comment #2 from Torsten Krah 2012-02-20 08:24:12 PST --- Addon: Restart X did not help, mouse still garbage - had to reboot. Any other option i can try next time? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[PATCH 5/5] drm/udl: initial UDL driver (v4)

2012-02-20 Thread Dave Airlie
he GNU General Public + * License v2. See the file COPYING in the main directory of this archive for + * more details. + */ + +#ifndef UDL_DRV_H +#define UDL_DRV_H + +#include + +#define DRIVER_NAME"udl" +#define DRIVER_DESC"DisplayLink" +#define DRIVER_D

[PATCH 4/5] drm: add core support for unplugging a device

2012-02-20 Thread Dave Airlie
From: Dave Airlie Two parts to this, one is simple unplug from sysfs for the device node. The second adds an unplugged state, if we have device opens, we just set the unplugged state and return, if we have no device opens we drop the drm device. If after a lastclose we discover we are unplugged

[PATCH 3/5] drm/modeset: add helper to unplug all connectors from sysfs

2012-02-20 Thread Dave Airlie
From: Dave Airlie In order to get correct ordering at hot-unplug for userspace, we need to tear down all the sysfs bits at the correct time. This adds a helper to allow drivers to remove the sysfs nodes for all connectors. Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_crtc.c | 11 +

[PATCH 2/5] drm/sysfs: protect sysfs removal code against being run twice.

2012-02-20 Thread Dave Airlie
From: Dave Airlie a step towards correct hot unplug for USB devices, we need to remove the userspace facing bits at the unplug time for correct udev operation. Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_sysfs.c |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --gi

[PATCH 1/5] drm/usb: add a busid implementation

2012-02-20 Thread Dave Airlie
From: Dave Airlie This adds an implementation for the busid callback so userspace can distinguish usb devices better. Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_usb.c | 32 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/dr

initial displaylink kms driver + drm hotplug

2012-02-20 Thread Dave Airlie
This series contains some changes to the drm to allow for better hotplug support for usb devices, along with the initial displaylink KMS driver. This relies on an fbdev patch that is in fbdev-next from Kay Sievers. (remove sysfs framebuffer device with USB .disconnect) The initial changes just al

[Bug 45366] Radeon gpu lockups

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=45366 --- Comment #1 from Torsten Krah 2012-02-20 08:06:11 PST --- Created attachment 57325 --> https://bugs.freedesktop.org/attachment.cgi?id=57325 GPU lookup - kernel 3.2.6; Ubuntu Oneiric Got some GPU lookup today too (hope its the same thing an

[Bug 46323] RS480 is not capable of gles blur anymore after update to mesa 8.0

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=46323 --- Comment #1 from Alex Deucher 2012-02-20 07:30:35 PST --- Can you bisect? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug.

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #9 from Alex Deucher 2012-02-20 15:27:26 --- Ok, this bug can be closed then. -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are watching the a

[Bug 37528] vgaswitcheroo: support for mux-less hybrid laptops

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37528 Alex Deucher changed: What|Removed |Added CC||infinity_d at elitemail.org --- Comment #

[Bug 41971] [kms] Muxless radeon takes 20 seconds to fetch rom

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=41971 --- Comment #15 from Alex Deucher 2012-02-20 07:17:17 PST --- Is this still an issue with a 3.3 kernel? There were some fixes to the ACPI rom fetching code. http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commitdiff;h=a3f83ab1a7

[PATCH] OMAPDSS: HDMI: hot plug detect fix

2012-02-20 Thread Rob Clark
From: Rob Clark The "OMAPDSS: HDMI: PHY burnout fix" commit switched the HDMI driver over to using a GPIO for plug detect. Unfortunately the ->detect() method was not also updated, causing HDMI to no longer work for the omapdrm driver (because it would actually check if a connection was detected

[PATCH] drm/radeon/kms: properly set accel working flag and bailout when false

2012-02-20 Thread j . glisse
From: Jerome Glisse If accel is not working many subsystem such as the ib pool might not be initialized properly that can lead to segfault inside kernel when cs ioctl is call with non working acceleration. To avoid this make sure the accel working flag is false when an error in GPU startup happen

[Bug 46323] RS480 is not capable of gles blur anymore after update to mesa 8.0

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46323 --- Comment #2 from Ben Gouhier 2012-02-20 14:54:23 PST --- I dont know, I am no expert :(. But I can try : what do you need me to do? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this ma

[PATCH] drm/i915: Fix single msg gmbus_xfers writes

2012-02-20 Thread Daniel Vetter
On Mon, Feb 20, 2012 at 07:22:00PM +0800, Daniel Kurtz wrote: > On Feb 15, 2012 6:48 PM, "Daniel Vetter" wrote: > > > > On Thu, Feb 09, 2012 at 12:03:17PM -0800, Benson Leung wrote: > > > gmbus_xfer with a single message (particularly a single message write) > > > would > > > set Bus Cycle Select

[PATCH] OMAPDSS: HDMI: hot plug detect fix

2012-02-20 Thread Rob Clark
From: Rob Clark The "OMAPDSS: HDMI: PHY burnout fix" commit switched the HDMI driver over to using a GPIO for plug detect. Unfortunately the ->detect() method was not also updated, causing HDMI to no longer work for the omapdrm driver (because it would actually check if a connection was detected

[Bug 39782] [r300g] XvMC playback fails with MPEG2 video and RV350

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=39782 --- Comment #10 from 414N 2012-02-20 04:50:04 PST --- Created attachment 57314 --> https://bugs.freedesktop.org/attachment.cgi?id=57314 xvmc log obtained via RADEON_DEBUG=all Having a similar problem on a R420. When using mplayer -vo xvmc to p

Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-20 Thread David Airlie
> > I'm certainly absolutely in favour of creating a common EDID parser, > and > the DRM/KMS implementation might indeed be the most complete / > advanced > one, but at least back in 2010 as I was working on the sh-mobile HDMI > driver, some functinality was still missing there, which I had to ad

Re: [PATCH 1/5] drm/usb: add a busid implementation

2012-02-20 Thread Sascha Hauer
Hi Dave, On Mon, Feb 20, 2012 at 04:13:45PM +, Dave Airlie wrote: > From: Dave Airlie > > This adds an implementation for the busid callback so userspace can > distinguish > usb devices better. Is it really worth it to add such an interface from the old days for new drivers? I would assume

[Bug 46274] Reading from /sys/kernel/debug/dri/0/radeon_ring_cp* cause null-pointer dereference

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46274 --- Comment #1 from Michel Dänzer 2012-02-20 09:24:58 PST --- Created attachment 57337 --> https://bugs.freedesktop.org/attachment.cgi?id=57337 Only create additional ring info files on Cayman or newer This patch should not create the additio

Re: [PATCH 4/5] drm/vgem: getparam ioctl

2012-02-20 Thread Ben Widawsky
On Thu, 16 Feb 2012 07:23:52 + Dave Airlie wrote: > On Wed, Feb 15, 2012 at 9:22 PM, Adam Jackson wrote: > > On 2/8/12 6:19 PM, Ben Widawsky wrote: > >> > >> Similar to i915, it's nice to be able to query this device uniquely and > >> get some info > >> > >> Signed-off-by: Ben Widawsky > > >

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-20 Thread Guennadi Liakhovetski
On Fri, 17 Feb 2012, Laurent Pinchart wrote: [snip] > *** Synchronous pipeline changes *** > > Goal: Create an API to apply complex changes to a video pipeline atomically. > > Needed for complex camera use cases. On the DRM/KMS side, the approach is to > use one big ioctl to configure th

[Bug 45366] Radeon gpu lockups

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45366 --- Comment #3 from Ernst Sjöstrand 2012-02-20 08:25:19 PST --- So you don't run a compositing windowmanager? killall -9 compiz get's me back to a fully working desktop. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=emai

[Bug 45366] Radeon gpu lockups

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45366 --- Comment #2 from Torsten Krah 2012-02-20 08:24:12 PST --- Addon: Restart X did not help, mouse still garbage - had to reboot. Any other option i can try next time? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-20 Thread David Airlie
> > I'm certainly absolutely in favour of creating a common EDID parser, > and > the DRM/KMS implementation might indeed be the most complete / > advanced > one, but at least back in 2010 as I was working on the sh-mobile HDMI > driver, some functinality was still missing there, which I had to ad

[PATCH 4/5] drm: add core support for unplugging a device

2012-02-20 Thread Dave Airlie
From: Dave Airlie Two parts to this, one is simple unplug from sysfs for the device node. The second adds an unplugged state, if we have device opens, we just set the unplugged state and return, if we have no device opens we drop the drm device. If after a lastclose we discover we are unplugged

[PATCH 3/5] drm/modeset: add helper to unplug all connectors from sysfs

2012-02-20 Thread Dave Airlie
From: Dave Airlie In order to get correct ordering at hot-unplug for userspace, we need to tear down all the sysfs bits at the correct time. This adds a helper to allow drivers to remove the sysfs nodes for all connectors. Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_crtc.c | 11 +

[PATCH 2/5] drm/sysfs: protect sysfs removal code against being run twice.

2012-02-20 Thread Dave Airlie
From: Dave Airlie a step towards correct hot unplug for USB devices, we need to remove the userspace facing bits at the unplug time for correct udev operation. Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_sysfs.c |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --gi

[PATCH 1/5] drm/usb: add a busid implementation

2012-02-20 Thread Dave Airlie
From: Dave Airlie This adds an implementation for the busid callback so userspace can distinguish usb devices better. Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_usb.c | 32 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/dr

initial displaylink kms driver + drm hotplug

2012-02-20 Thread Dave Airlie
This series contains some changes to the drm to allow for better hotplug support for usb devices, along with the initial displaylink KMS driver. This relies on an fbdev patch that is in fbdev-next from Kay Sievers. (remove sysfs framebuffer device with USB .disconnect) The initial changes just al

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-20 Thread Guennadi Liakhovetski
On Fri, 17 Feb 2012, Daniel Vetter wrote: > On Fri, Feb 17, 2012 at 12:25:51AM +0100, Laurent Pinchart wrote: > > Hello everybody, > > > > First of all, I would like to thank all the attendees for their > > participation > > in the mini-summit that helped make the meeting a success. > > > > He

[Bug 45366] Radeon gpu lockups

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45366 --- Comment #1 from Torsten Krah 2012-02-20 08:06:11 PST --- Created attachment 57325 --> https://bugs.freedesktop.org/attachment.cgi?id=57325 GPU lookup - kernel 3.2.6; Ubuntu Oneiric Got some GPU lookup today too (hope its the same thing an

[Bug 46323] New: RS480 is not capable of gles blur anymore after update to mesa 8.0

2012-02-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=46323 Bug #: 46323 Summary: RS480 is not capable of gles blur anymore after update to mesa 8.0 Classification: Unclassified Product: Mesa Version: 8.0 Platform: x86-64 (AMD6

[Bug 46323] RS480 is not capable of gles blur anymore after update to mesa 8.0

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46323 --- Comment #1 from Alex Deucher 2012-02-20 07:30:35 PST --- Can you bisect? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. _

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #9 from Alex Deucher 2012-02-20 15:27:26 --- Ok, this bug can be closed then. -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are watching the a

[Bug 37528] vgaswitcheroo: support for mux-less hybrid laptops

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37528 Alex Deucher changed: What|Removed |Added CC||infinit...@elitemail.org --- Comment #9 f

[Bug 41971] [kms] Muxless radeon takes 20 seconds to fetch rom

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41971 --- Comment #15 from Alex Deucher 2012-02-20 07:17:17 PST --- Is this still an issue with a 3.3 kernel? There were some fixes to the ACPI rom fetching code. http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commitdiff;h=a3f83ab1a71

Re: [PATCH] drm/i915: Fix single msg gmbus_xfers writes

2012-02-20 Thread Daniel Vetter
On Mon, Feb 20, 2012 at 07:22:00PM +0800, Daniel Kurtz wrote: > On Feb 15, 2012 6:48 PM, "Daniel Vetter" wrote: > > > > On Thu, Feb 09, 2012 at 12:03:17PM -0800, Benson Leung wrote: > > > gmbus_xfer with a single message (particularly a single message write) > > > would > > > set Bus Cycle Select

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #8 from Thomas 2012-02-20 05:17:09 --- Okay, I tracked this down more and was able to boot a 3.3-rc4 kernel. The problem was that radeon and uvesa was compiled into the kernel. -- Configure bugmail: https://bugzilla.kernel.org/u

[Bug 39782] [r300g] XvMC playback fails with MPEG2 video and RV350

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39782 --- Comment #10 from 414N 2012-02-20 04:50:04 PST --- Created attachment 57314 --> https://bugs.freedesktop.org/attachment.cgi?id=57314 xvmc log obtained via RADEON_DEBUG=all Having a similar problem on a R420. When using mplayer -vo xvmc to p

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #7 from Thomas 2012-02-20 04:37:49 --- I started with git bisect good v3.2 git bisect bad v3.3-rc1 and every builded kernel had the issue (more or less, at some point near the end the screen just goes to standby instead of freez

Re: [PATCH] drm/i915: Fix single msg gmbus_xfers writes

2012-02-20 Thread Daniel Kurtz
On Feb 15, 2012 6:48 PM, "Daniel Vetter" wrote: > > On Thu, Feb 09, 2012 at 12:03:17PM -0800, Benson Leung wrote: > > gmbus_xfer with a single message (particularly a single message write) would > > set Bus Cycle Select to 100b, the Gen Stop cycle, instead of 101b, > > No Index, Stop cycle. This w

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #6 from Thomas 2012-02-20 02:58:13 --- Okay, I found a description here: http://kerneltrap.org/node/11753 and hope that cloning 2.6 is right. Also, as a sidenode: The cursor (down left side of the screen) blinks for a few seconds

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #5 from Thomas 2012-02-20 02:46:09 --- Hi Alex, I'm not that expert, but I think bisect has something to do with git? I'll try to figure it out for myself, but it would be great if you could give me step-by-step instructions what

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 Alex Deucher changed: What|Removed |Added CC||alexdeucher at gmail.com --- Comment #

[Bug 42795] Unable to boot with the radeon driver

2012-02-20 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42795 --- Comment #3 from Thomas 2012-02-20 00:59:11 --- Still presented in 3.3-r4. -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are watching the assignee of th

[Bug 46323] New: RS480 is not capable of gles blur anymore after update to mesa 8.0

2012-02-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46323 Bug #: 46323 Summary: RS480 is not capable of gles blur anymore after update to mesa 8.0 Classification: Unclassified Product: Mesa Version: 8.0 Platform: x86-64 (AMD6