[Bug 35434] [RADEON:KMS:R600G] etqw: broken ground textures

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35434 --- Comment #17 from Vadim 2011-06-15 22:28:20 PDT --- (In reply to comment #16) > 2) water in-game is no longer rendered correctly, now only black blobs appear > where water should be. I hope the patch from bug 38280 will fix it. -- Configure

[Bug 35434] [RADEON:KMS:R600G] etqw: broken ground textures

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=35434 --- Comment #17 from Vadim 2011-06-15 22:28:20 PDT --- (In reply to comment #16) > 2) water in-game is no longer rendered correctly, now only black blobs appear > where water should be. I hope the patch from bug 38280 will fix it. -- Configure

[Bug 35434] [RADEON:KMS:R600G] etqw: broken ground textures

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35434 --- Comment #16 from Brian Paterni 2011-06-15 21:43:42 PDT --- (In reply to comment #15) > Created an attachment (id=48019) View: https://bugs.freedesktop.org/attachment.cgi?id=48019 Review: https://bugs.freedesktop.org/review?bug=35434&attach

[Bug 35434] [RADEON:KMS:R600G] etqw: broken ground textures

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=35434 --- Comment #16 from Brian Paterni 2011-06-15 21:43:42 PDT --- (In reply to comment #15) > Created an attachment (id=48019) View: https://bugs.freedesktop.org/attachment.cgi?id=48019 Review: https://bugs.freedesktop.org/review?bug=35434&attach

[Bug 35434] [RADEON:KMS:R600G] etqw: broken ground textures

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35434 --- Comment #15 from Vadim 2011-06-15 20:13:00 PDT --- Created an attachment (id=48019) View: https://bugs.freedesktop.org/attachment.cgi?id=48019 Review: https://bugs.freedesktop.org/review?bug=35434&attachment=48019 patch Does this patch he

[Bug 35434] [RADEON:KMS:R600G] etqw: broken ground textures

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=35434 --- Comment #15 from Vadim 2011-06-15 20:13:00 PDT --- Created an attachment (id=48019) View: https://bugs.freedesktop.org/attachment.cgi?id=48019 Review: https://bugs.freedesktop.org/review?bug=35434&attachment=48019 patch Does this patch he

CPU and GPU cache-coherence

2011-06-15 Thread Michel Dänzer
On Mit, 2011-06-15 at 16:58 +0200, Michel D?nzer wrote: > On Die, 2011-06-07 at 21:42 +0800, Donnie Fang wrote: > > 3D render image on WC AGP aperture BO and then CPU fetch the image > > from this bo, in order to achieve performance, after 3D finished > > rendering, validate this bo into cached sy

r600g TXD opcode (was: ... translation from TGSI failed / missing vertex shader)

2011-06-15 Thread Dave Airlie
On Wed, Jun 15, 2011 at 4:09 AM, Sven Arvidsson wrote: > On Tue, 2011-06-14 at 19:09 +0200, David Lamparter wrote: >> On Sun, Jun 05, 2011 at 10:32:34PM -0700, bugzilla-daemon at freedesktop.org >> wrote: >> > I'm attaching a patch that has an implementation. Unfortunately I can't >> > seem to >

Oops in i915 intel_init_clock_gating

2011-06-15 Thread Alan Stern
On Wed, 15 Jun 2011, Jesse Barnes wrote: > On Wed, 15 Jun 2011 16:08:51 -0400 (EDT) > Alan Stern wrote: > > > The problem of dev_priv->display.init_clock_gating not getting set is > > still present in 3.0-rc3. On my system this happens because > > intel_init_display() never gets called in the

CPU and GPU cache-coherence

2011-06-15 Thread Michel Dänzer
On Die, 2011-06-07 at 21:42 +0800, Donnie Fang wrote: > 3D render image on WC AGP aperture BO and then CPU fetch the image > from this bo, in order to achieve performance, after 3D finished > rendering, validate this bo into cached system memory and then read it > from system memory. But I always g

Oops in i915 intel_init_clock_gating

2011-06-15 Thread Alan Stern
The problem of dev_priv->display.init_clock_gating not getting set is still present in 3.0-rc3. On my system this happens because intel_init_display() never gets called in the first place. AFAICT, the normal calling sequence during driver initialization is: i915_driver_load() -> i915_l

Re: [PATCH] drm/i915: add check for valid init_clock_gating-pointer

2011-06-15 Thread Jesse Barnes
On Thu, 16 Jun 2011 00:24:39 +0200 Wolfram Sang wrote: > Commit 6067aa (drm/i915: split clock gating init into per-chipset > functions) unconditionally calls the newly created > init_clock_gating-pointer. There is one case, however, where it does > not get set: > > if (HAS_PCH_SPLIT(dev)) { >

[PATCH] drm/i915: add check for valid init_clock_gating-pointer

2011-06-15 Thread Wolfram Sang
Commit 6067aa (drm/i915: split clock gating init into per-chipset functions) unconditionally calls the newly created init_clock_gating-pointer. There is one case, however, where it does not get set: if (HAS_PCH_SPLIT(dev)) { ... } else dev_priv->display.update_wm =

[PATCH] drm/i915: add check for valid init_clock_gating-pointer

2011-06-15 Thread Jesse Barnes
On Thu, 16 Jun 2011 00:24:39 +0200 Wolfram Sang wrote: > Commit 6067aa (drm/i915: split clock gating init into per-chipset > functions) unconditionally calls the newly created > init_clock_gating-pointer. There is one case, however, where it does > not get set: > > if (HAS_PCH_SPLIT(dev)) { >

Re: Oops in i915 intel_init_clock_gating

2011-06-15 Thread Alan Stern
On Wed, 15 Jun 2011, Jesse Barnes wrote: > On Wed, 15 Jun 2011 16:08:51 -0400 (EDT) > Alan Stern wrote: > > > The problem of dev_priv->display.init_clock_gating not getting set is > > still present in 3.0-rc3. On my system this happens because > > intel_init_display() never gets called in the

Re: Oops in i915 intel_init_clock_gating

2011-06-15 Thread Jesse Barnes
On Wed, 15 Jun 2011 16:08:51 -0400 (EDT) Alan Stern wrote: > The problem of dev_priv->display.init_clock_gating not getting set is > still present in 3.0-rc3. On my system this happens because > intel_init_display() never gets called in the first place. > > AFAICT, the normal calling sequence

Oops in i915 intel_init_clock_gating

2011-06-15 Thread Jesse Barnes
On Wed, 15 Jun 2011 16:08:51 -0400 (EDT) Alan Stern wrote: > The problem of dev_priv->display.init_clock_gating not getting set is > still present in 3.0-rc3. On my system this happens because > intel_init_display() never gets called in the first place. > > AFAICT, the normal calling sequence

Re: Oops in i915 intel_init_clock_gating

2011-06-15 Thread Alan Stern
The problem of dev_priv->display.init_clock_gating not getting set is still present in 3.0-rc3. On my system this happens because intel_init_display() never gets called in the first place. AFAICT, the normal calling sequence during driver initialization is: i915_driver_load() -> i915_l

[PATCH] DRM: clean up and document parsing of video= parameter

2011-06-15 Thread Rolf Eike Beer

[Bug 37502] Kernels oops display in X leaves screen garbled

2011-06-15 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=37502 --- Comment #2 from T?r?k Edwin 2011-06-15 12:56:01 --- Created an attachment (id=62122) --> (https://bugzilla.kernel.org/attachment.cgi?id=62122) garbled screen photo -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=em

[Bug 37502] Kernels oops display in X leaves screen garbled

2011-06-15 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=37502 --- Comment #1 from T?r?k Edwin 2011-06-15 12:54:47 --- Created an attachment (id=62112) --> (https://bugzilla.kernel.org/attachment.cgi?id=62112) Xorg.0.log.old -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email --

[Bug 37502] New: Kernels oops display in X leaves screen garbled

2011-06-15 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=37502 Summary: Kernels oops display in X leaves screen garbled Product: Drivers Version: 2.5 Kernel Version: 3.0.0-rc3 Platform: All OS/Version: Linux Tree: Mainline Status:

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #4 from XoD 2011-06-15 12:12:33 PDT --- Created an attachment (id=48013) --> (https://bugs.freedesktop.org/attachment.cgi?id=48013) Xorg.log -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #3 from XoD 2011-06-15 12:11:49 PDT --- Created an attachment (id=48012) --> (https://bugs.freedesktop.org/attachment.cgi?id=48012) dmesg -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are re

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #4 from XoD 2011-06-15 12:12:33 PDT --- Created an attachment (id=48013) --> (https://bugs.freedesktop.org/attachment.cgi?id=48013) Xorg.log -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #3 from XoD 2011-06-15 12:11:49 PDT --- Created an attachment (id=48012) --> (https://bugs.freedesktop.org/attachment.cgi?id=48012) dmesg -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are re

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #2 from Alex Deucher 2011-06-15 12:04:42 PDT --- Also what hardware are you using? Can you attach your dmesg output? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail bec

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #1 from Alex Deucher 2011-06-15 12:04:03 PDT --- which piglit test(s) cause this? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee f

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #2 from Alex Deucher 2011-06-15 12:04:42 PDT --- Also what hardware are you using? Can you attach your dmesg output? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail be

[Bug 38353] r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38353 --- Comment #1 from Alex Deucher 2011-06-15 12:04:03 PDT --- which piglit test(s) cause this? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee

[Bug 38353] New: r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38353 Summary: r600g : lock in desktop display durring piglit test Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major

[Bug 38353] New: r600g : lock in desktop display durring piglit test

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38353 Summary: r600g : lock in desktop display durring piglit test Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major

[PATCH] DRM: clean up and document parsing of video= parameter

2011-06-15 Thread Rolf Eike Beer
The video= parameter of the DRM drivers supports some additional flags that the normal fb drivers do not have. They also allow to limit these flags to specific outputs. Both things were previously undocumented. Also the parsing of the line had some oddities: -A lot of misplaced options were silent

[PATCH] drm: populate irq_by_busid-member for pci

2011-06-15 Thread Wolfram Sang
Commit 8410ea (drm: rework PCI/platform driver interface) implemented drm_pci_irq_by_busid() but forgot to make it available in the drm_pci_bus-struct. This caused a freeze on my Radeon9600-equipped laptop when executing glxgears. Thanks to Michel for noticing the flaw. Reported-by: Michel D?nzer

Re: [RFC] Updated DRM plane handling patches

2011-06-15 Thread Jesse Barnes
On Tue, 7 Jun 2011 13:07:38 -0700 Jesse Barnes wrote: > This patchset updates the previous one, incorporating the feedback I > received: > 1) uses the v4l fourcc codes to communicate pixel format > 2) adds a new addfb ioctl that takes a format > 3) adds working SNB support for the new code

[RFC] Updated DRM plane handling patches

2011-06-15 Thread Jesse Barnes
On Tue, 7 Jun 2011 13:07:38 -0700 Jesse Barnes wrote: > This patchset updates the previous one, incorporating the feedback I > received: > 1) uses the v4l fourcc codes to communicate pixel format > 2) adds a new addfb ioctl that takes a format > 3) adds working SNB support for the new code

[Bug 37442] Radeon 9600 Mobile (RV350) freezes on glxgears - bisected

2011-06-15 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=37442 --- Comment #6 from Wolfram Sang 2011-06-15 09:33:53 --- Created an attachment (id=62092) --> (https://bugzilla.kernel.org/attachment.cgi?id=62092) Proposed fix Thanks Michel, great pointer! The attached patch fixes the issue here; also se

[Bug 30122] r600 scrambled render when using 2d texture sample for 1d texture co-ord in fragment shader

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30122 Thomas Jones changed: What|Removed |Added Component|Drivers/Gallium/r600|Drivers/DRI/R600 --- Comment #5 from Thom

[Bug 30122] r600 scrambled render when using 2d texture sample for 1d texture co-ord in fragment shader

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30122 Thomas Jones changed: What|Removed |Added Component|Drivers/Gallium/r600|Drivers/DRI/R600 --- Comment #5 from Thom

Re: CPU and GPU cache-coherence

2011-06-15 Thread Michel Dänzer
On Mit, 2011-06-15 at 16:58 +0200, Michel Dänzer wrote: > On Die, 2011-06-07 at 21:42 +0800, Donnie Fang wrote: > > 3D render image on WC AGP aperture BO and then CPU fetch the image > > from this bo, in order to achieve performance, after 3D finished > > rendering, validate this bo into cached sy

Re: CPU and GPU cache-coherence

2011-06-15 Thread Michel Dänzer
On Die, 2011-06-07 at 21:42 +0800, Donnie Fang wrote: > 3D render image on WC AGP aperture BO and then CPU fetch the image > from this bo, in order to achieve performance, after 3D finished > rendering, validate this bo into cached system memory and then read it > from system memory. But I always g

[Bug 37442] Radeon 9600 Mobile (RV350) freezes on glxgears - bisected

2011-06-15 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=37442 --- Comment #5 from Michel D?nzer 2011-06-15 07:59:16 --- Dave, the implicated commit doesn't seem to hook up drm_pci_irq_by_busid anywhere. That's probably not intended? :) Not sure why the compiler doesn't complain about it... Not sure th

[Bug 37442] Radeon 9600 Mobile (RV350) freezes on glxgears - bisected

2011-06-15 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=37442 --- Comment #4 from Wolfram Sang 2011-06-15 07:38:53 --- KMS works now, was a kernel misconfiguration (forgot to disable radeonfb, doh!). Interestingly, KMS does work with AGP4x while the Xorg driver can just handle AGP2x (also freezes the m

[PATCH] DRM: clean up and document parsing of video= parameter

2011-06-15 Thread Rolf Eike Beer
>From a8163a0acef17c66521de37464732a2a4f9e50ca Mon Sep 17 00:00:00 2001 From: Rolf Eike Beer Date: Wed, 15 Jun 2011 11:27:02 +0200 Subject: [PATCH] DRM: clean up and document parsing of video= parameter The video= parameter of the DRM drivers supports some additional flags that the normal fb driv

[Bug 37502] Kernels oops display in X leaves screen garbled

2011-06-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=37502 --- Comment #2 from Török Edwin 2011-06-15 12:56:01 --- Created an attachment (id=62122) --> (https://bugzilla.kernel.org/attachment.cgi?id=62122) garbled screen photo -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=ema

[Bug 37502] Kernels oops display in X leaves screen garbled

2011-06-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=37502 --- Comment #1 from Török Edwin 2011-06-15 12:54:47 --- Created an attachment (id=62112) --> (https://bugzilla.kernel.org/attachment.cgi?id=62112) Xorg.0.log.old -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email ---

[Bug 36921] Sanctuary: Rendering errors with shader quality set to high

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36921 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 37502] New: Kernels oops display in X leaves screen garbled

2011-06-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=37502 Summary: Kernels oops display in X leaves screen garbled Product: Drivers Version: 2.5 Kernel Version: 3.0.0-rc3 Platform: All OS/Version: Linux Tree: Mainline Status:

[Bug 36921] Sanctuary: Rendering errors with shader quality set to high

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36921 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 36920] Lightsmark: not rendering correctly

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36920 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 36920] Lightsmark: not rendering correctly

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36920 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 37225] Penumbra: Motion blur not working correctly

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37225 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 37225] Penumbra: Motion blur not working correctly

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37225 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 36944] Family Farm: misrenders on r600g

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36944 --- Comment #3 from Sven Arvidsson 2011-06-15 05:32:47 PDT --- Still a problem for me with git-40aec11, I guess it could be something specific to Evergreen? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 36944] Family Farm: misrenders on r600g

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36944 --- Comment #3 from Sven Arvidsson 2011-06-15 05:32:47 PDT --- Still a problem for me with git-40aec11, I guess it could be something specific to Evergreen? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 38190] Amnesia / RenderFeatTest graphical glitches with refraction

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38190 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 38190] Amnesia / RenderFeatTest graphical glitches with refraction

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38190 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 37261] Norsetto shadow mapping doesn't render correctly

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37261 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 36523] water reflections misrendered in sauerbraten with "shaders=high" setting

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36523 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 37261] Norsetto shadow mapping doesn't render correctly

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37261 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 36523] water reflections misrendered in sauerbraten with "shaders=high" setting

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36523 Sven Arvidsson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[PATCH] drm: populate irq_by_busid-member for pci

2011-06-15 Thread Wolfram Sang
Commit 8410ea (drm: rework PCI/platform driver interface) implemented drm_pci_irq_by_busid() but forgot to make it available in the drm_pci_bus-struct. This caused a freeze on my Radeon9600-equipped laptop when executing glxgears. Thanks to Michel for noticing the flaw. Reported-by: Michel Dänzer

[Bug 33371] [RADEON:KMS:R600G] zsnes output all garbage when OpenGL is enabled

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33371 --- Comment #2 from Pierre-Eric Pelloux-Prayer 2011-06-15 03:13:53 PDT --- Works fine here using r600g + mesa 40aec11b7569fcdd2d884629b172af3db3fbaf1d (it looks fine too using Debian's mesa : "Mesa DRI R600 (RV770 9442) 20090101 TCL DRI2") --

[Bug 33371] [RADEON:KMS:R600G] zsnes output all garbage when OpenGL is enabled

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33371 --- Comment #2 from Pierre-Eric Pelloux-Prayer 2011-06-15 03:13:53 PDT --- Works fine here using r600g + mesa 40aec11b7569fcdd2d884629b172af3db3fbaf1d (it looks fine too using Debian's mesa : "Mesa DRI R600 (RV770 9442) 20090101 TCL DRI2") --

[Bug 37442] Radeon 9600 Mobile (RV350) freezes on glxgears - bisected

2011-06-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=37442 --- Comment #6 from Wolfram Sang 2011-06-15 09:33:53 --- Created an attachment (id=62092) --> (https://bugzilla.kernel.org/attachment.cgi?id=62092) Proposed fix Thanks Michel, great pointer! The attached patch fixes the issue here; also se

[Bug 38280] [bisected] regression : etqw tree/water wrong rendering

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38280 --- Comment #6 from Andy Furniss 2011-06-15 02:21:07 PDT --- (In reply to comment #4) > Created an attachment (id=47965) View: https://bugs.freedesktop.org/attachment.cgi?id=47965 Review: https://bugs.freedesktop.org/review?bug=38280&attachmen

[Bug 38280] [bisected] regression : etqw tree/water wrong rendering

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38280 --- Comment #6 from Andy Furniss 2011-06-15 02:21:07 PDT --- (In reply to comment #4) > Created an attachment (id=47965) View: https://bugs.freedesktop.org/attachment.cgi?id=47965 Review: https://bugs.freedesktop.org/review?bug=38280&attachmen

[Bug 36523] water reflections misrendered in sauerbraten with "shaders=high" setting

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36523 --- Comment #5 from Stefano Teso 2011-06-15 02:16:10 PDT --- (In reply to comment #4) > This seems to be fixed with current git master, can you confirm? Yes, confirming with latest git master. Feel free to close this bug. Thanks! -- Configure

[Bug 36523] water reflections misrendered in sauerbraten with "shaders=high" setting

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36523 --- Comment #5 from Stefano Teso 2011-06-15 02:16:10 PDT --- (In reply to comment #4) > This seems to be fixed with current git master, can you confirm? Yes, confirming with latest git master. Feel free to close this bug. Thanks! -- Configure

[Bug 38335] [r600g] Missing item/action icons in World of Warcraft

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38335 --- Comment #1 from Chris Rankin 2011-06-15 02:05:01 PDT --- I should also point out that this does not happen with either my RV350 or M66GL (r300g). -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are re

[Bug 36944] Family Farm: misrenders on r600g

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36944 --- Comment #2 from Pierre-Eric Pelloux-Prayer 2011-06-15 02:07:34 PDT --- Game renders correctly here using HD4850 (using mesa 27d3e0b25... or latest git). -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 36944] Family Farm: misrenders on r600g

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36944 --- Comment #2 from Pierre-Eric Pelloux-Prayer 2011-06-15 02:07:34 PDT --- Game renders correctly here using HD4850 (using mesa 27d3e0b25... or latest git). -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 30122] r600 scrambled render when using 2d texture sample for 1d texture co-ord in fragment shader

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30122 --- Comment #4 from Pierre-Eric Pelloux-Prayer 2011-06-15 02:04:40 PDT --- Created an attachment (id=47987) --> (https://bugs.freedesktop.org/attachment.cgi?id=47987) r600c incorrect rendering Tested with HD4850 + mesa from git : * r600g ren

[Bug 38335] New: [r600g] Missing item/action icons in World of Warcraft

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38335 Summary: [r600g] Missing item/action icons in World of Warcraft Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal

[Bug 38335] [r600g] Missing item/action icons in World of Warcraft

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38335 --- Comment #1 from Chris Rankin 2011-06-15 02:05:01 PDT --- I should also point out that this does not happen with either my RV350 or M66GL (r300g). -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are re

[Bug 30122] r600 scrambled render when using 2d texture sample for 1d texture co-ord in fragment shader

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30122 --- Comment #4 from Pierre-Eric Pelloux-Prayer 2011-06-15 02:04:40 PDT --- Created an attachment (id=47987) --> (https://bugs.freedesktop.org/attachment.cgi?id=47987) r600c incorrect rendering Tested with HD4850 + mesa from git : * r600g ren

[Bug 38335] New: [r600g] Missing item/action icons in World of Warcraft

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38335 Summary: [r600g] Missing item/action icons in World of Warcraft Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal

[Bug 37442] Radeon 9600 Mobile (RV350) freezes on glxgears - bisected

2011-06-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=37442 --- Comment #5 from Michel Dänzer 2011-06-15 07:59:16 --- Dave, the implicated commit doesn't seem to hook up drm_pci_irq_by_busid anywhere. That's probably not intended? :) Not sure why the compiler doesn't complain about it... Not sure tha

[Bug 37442] Radeon 9600 Mobile (RV350) freezes on glxgears - bisected

2011-06-15 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=37442 --- Comment #4 from Wolfram Sang 2011-06-15 07:38:53 --- KMS works now, was a kernel misconfiguration (forgot to disable radeonfb, doh!). Interestingly, KMS does work with AGP4x while the Xorg driver can just handle AGP2x (also freezes the m

[Bug 38280] [bisected] regression : etqw tree/water wrong rendering

2011-06-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38280 --- Comment #5 from Pierre-Eric Pelloux-Prayer 2011-06-15 00:27:58 PDT --- (In reply to comment #4) > This patch should restore previous behaviour for r600&r700 hw. Just tested it on ETQW, water and trees are properly rendering. -- Configure

[Bug 38280] [bisected] regression : etqw tree/water wrong rendering

2011-06-15 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38280 --- Comment #5 from Pierre-Eric Pelloux-Prayer 2011-06-15 00:27:58 PDT --- (In reply to comment #4) > This patch should restore previous behaviour for r600&r700 hw. Just tested it on ETQW, water and trees are properly rendering. -- Configure

Re: r600g TXD opcode (was: ... translation from TGSI failed / missing vertex shader)

2011-06-15 Thread Dave Airlie
On Wed, Jun 15, 2011 at 4:09 AM, Sven Arvidsson wrote: > On Tue, 2011-06-14 at 19:09 +0200, David Lamparter wrote: >> On Sun, Jun 05, 2011 at 10:32:34PM -0700, bugzilla-dae...@freedesktop.org >> wrote: >> > I'm attaching a patch that has an implementation. Unfortunately I can't >> > seem to >> >