[Bug 10097] New: cataclysmic system failure with git i915tex and Warsow video game.

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10097 Summary: cataclysmic system failure with git i915tex and Warsow video game. Product: Mesa Version: CVS Platform: x86 (IA32) OS/Version: All Status: NEW

[Bug 10097] cataclysmic system failure with git i915tex and Warsow video game.

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10097 --- Comment #1 from [EMAIL PROTECTED] 2007-02-26 03:34 --- Created an attachment (id=8851) -- (http://bugs.freedesktop.org/attachment.cgi?id=8851action=view) xorg.log from i915_dri.so crash. xorg.log from i915_dri.so crash. Log for

[Bug 10097] cataclysmic system failure with git i915tex and Warsow video game.

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10097 --- Comment #2 from [EMAIL PROTECTED] 2007-02-26 03:35 --- Created an attachment (id=8852) -- (http://bugs.freedesktop.org/attachment.cgi?id=8852action=view) warsow crash log with i915_dri.so warsow rand with export

[Bug 10097] cataclysmic system failure with git i915tex and Warsow video game.

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10097 --- Comment #3 from [EMAIL PROTECTED] 2007-02-26 03:36 --- I was able to reproduce the crash with the i915_dri.so by reinstalling the xserver-xorg-video-i810 package that came with Debian. Note that this i915_dri.so is from the same

[Bug 10097] cataclysmic system failure with git i915tex and Warsow video game.

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10097 --- Comment #4 from [EMAIL PROTECTED] 2007-02-26 03:38 --- BTW the game can be obtained at: http://www.warsow.net/ And tremulous I installed using the packages provided by Debian, but if your not running Debian you can find the game

[PATCH] R300 early Z cleanup

2007-02-26 Thread Christoph Brill
Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome Glisse helped me with this patch. Thanks. :-) diff --git a/src/mesa/drivers/dri/r300/r300_reg.h b/src/mesa/drivers/dri/r300/r300_reg.h index 9f636ec..5dfd1fb 100644 --- a/src/mesa/drivers/dri/r300/r300_reg.h

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Christoph Brill
Attached is a revised patch with few comments (because of missing bit shifts) from agd5f in #dri-devel. Thanks! diff --git a/src/mesa/drivers/dri/r300/r300_reg.h b/src/mesa/drivers/dri/r300/r300_reg.h index 9f636ec..6abcfa4 100644 --- a/src/mesa/drivers/dri/r300/r300_reg.h +++

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Roland Scheidegger
Christoph Brill wrote: Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome Glisse helped me with this patch. Thanks. :-) Not really related directly to the patch itself, but it seems to me that the conditions when to enable early-z are a bit wrong. First, I'd

[Bug 10085] doesn't build against 2.6.21-rc1

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10085 [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Jerome Glisse
On 2/26/07, Roland Scheidegger [EMAIL PROTECTED] wrote: Christoph Brill wrote: Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome Glisse helped me with this patch. Thanks. :-) Not really related directly to the patch itself, but it seems to me that the

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Keith Whitwell
Jerome Glisse wrote: On 2/26/07, Roland Scheidegger [EMAIL PROTECTED] wrote: Christoph Brill wrote: Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome Glisse helped me with this patch. Thanks. :-) Not really related directly to the patch itself, but it

[Bug 10024] R300 fragment.position viewport transformation is incorrect

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10024 --- Comment #37 from [EMAIL PROTECTED] 2007-02-26 11:50 PST --- I would still like you to confirm the X Y values. Do something like: MUL result.color.xy, fragment.color.xy, {0.005}.x; If you could send me a screenshot from r300

[PATCHES] Misc R300 cleanup towards a better r300_reg.h

2007-02-26 Thread Christoph Brill
Attached are two patches that: - define 0x4f18 as R300_RB3D_UNKOWN_4F18 - copy over 1 define from r200 as R300_VAP_CNTL - rename R300_VAP_CNTL to R300_VAP_CNTL_STATUS to be the same as r200 (both unused in r300 code) On #dri-devel there was discussion about similarities in the lower register

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Jerome Glisse
On 2/26/07, Keith Whitwell [EMAIL PROTECTED] wrote: Jerome Glisse wrote: On 2/26/07, Roland Scheidegger [EMAIL PROTECTED] wrote: Christoph Brill wrote: Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome Glisse helped me with this patch. Thanks. :-)

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Keith Whitwell
Jerome Glisse wrote: On 2/26/07, Keith Whitwell [EMAIL PROTECTED] wrote: Jerome Glisse wrote: On 2/26/07, Roland Scheidegger [EMAIL PROTECTED] wrote: Christoph Brill wrote: Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome Glisse helped me with this

[PATCH] Use constants during reset

2007-02-26 Thread Christoph Brill
Attached is a patch to use some more constants in r300ResetHwState() or r300_state.c. Maybe some of the unk registers in r300_hw_state of r300_context.h should be renamed, too. diff -Naur /usr/src/mesa/src/mesa/drivers/dri/r300/r300_cmdbuf.c ./r300_cmdbuf.c ---

Re: [PATCH] R300 early Z cleanup

2007-02-26 Thread Roland Scheidegger
Keith Whitwell wrote: Jerome Glisse wrote: On 2/26/07, Keith Whitwell [EMAIL PROTECTED] wrote: Jerome Glisse wrote: On 2/26/07, Roland Scheidegger [EMAIL PROTECTED] wrote: Christoph Brill wrote: Attached is a mini-patch to add the address of early Z to r300_reg.h and use it. Jerome

[Bug 10024] R300 fragment.position viewport transformation is incorrect

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10024 --- Comment #38 from [EMAIL PROTECTED] 2007-02-26 19:35 PST --- I assume you mean MUL result.color.xy, fragment.position.xy, {0.005}.x; and not fragment.color. I'm testing with MUL result.color.xy, fragment.position.xy, {0.005}.x;

[Bug 10024] R300 fragment.position viewport transformation is incorrect

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10024 --- Comment #39 from [EMAIL PROTECTED] 2007-02-26 19:42 PST --- Created an attachment (id=8865) -- (http://bugs.freedesktop.org/attachment.cgi?id=8865action=view) R300 fragment.position.xy I had to use MUL result.color.xy,

[Bug 10024] R300 fragment.position viewport transformation is incorrect

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10024 --- Comment #40 from [EMAIL PROTECTED] 2007-02-26 19:53 PST --- Created an attachment (id=8866) -- (http://bugs.freedesktop.org/attachment.cgi?id=8866action=view) Blob fragment.position.xy Ditto -- Configure bugmail:

[Bug 10024] R300 fragment.position viewport transformation is incorrect

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10024 --- Comment #41 from [EMAIL PROTECTED] 2007-02-26 19:59 PST --- I forgot to mention that the R300 screenshot is with your patch to calculate the WPOS in the fragment program. -- Configure bugmail:

[Bug 9252] complete lockups with radeon 9600 XT

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=9252 [EMAIL PROTECTED] changed: What|Removed |Added CC||[EMAIL PROTECTED] --- Comment

[Bug 10090] Google Earth rendering trouble with Unichrome IGP

2007-02-26 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10090 --- Comment #5 from [EMAIL PROTECTED] 2007-02-26 21:32 PST --- Created an attachment (id=8867) -- (http://bugs.freedesktop.org/attachment.cgi?id=8867action=view) fix hardware clipping I have a patch for you to test :) this depends