[Dri-devel] Your Bugzilla buglist needs attention.

2003-07-19 Thread bugadmin
[This e-mail has been automatically generated.] You have one or more bugs assigned to you in the Bugzilla bugsystem (http://bugs.xfree86.org/) that require attention. All of these bugs are in the NEW state, and have not been touched in 7 days or more. You need to take a look at them, and

Re: [Dri-devel] DRI weirdness on PowerPC + ATI 7500 (r200)

2003-07-19 Thread Jrme Marant
[ Please CC me on reply, I'm not subscribed ] Paul Zaremba [EMAIL PROTECTED] writes: [EMAIL PROTECTED] wrote: I tried Tuxracer on a powerpc machine + an ATI 7500 (r200) with a 20030504 snapshot of DRI (xlibmesa-gl1) and I experienced glitches. I tried a 20030425 snapshot which worked fine

Re: [Dri-devel] DRI weirdness on PowerPC + ATI 7500 (r200)

2003-07-19 Thread Paul Zaremba
[EMAIL PROTECTED] wrote: [ Please CC me on reply, I'm not subscribed ] Hi, I tried Tuxracer on a powerpc machine + an ATI 7500 (r200) with a 20030504 snapshot of DRI (xlibmesa-gl1) and I experienced glitches. I tried a 20030425 snapshot which worked fine (but much slower IMO) so I guess

Re: [Dri-devel] DRI weirdness on PowerPC + ATI 7500 (r200)

2003-07-19 Thread Paul Zaremba
The dri-devel list may get this twice, I was using a different email address than I had registered to send last time and it is pending list administrator approval. I registered my send address with the dri-devel list and am re-sending this to the list (but not to jmarant - he already received the

Re: [Dri-devel] DRI weirdness on PowerPC + ATI 7500 (r200)

2003-07-19 Thread Michel Dänzer
On Fri, 2003-07-18 at 13:45, [EMAIL PROTECTED] wrote: I tried Tuxracer on a powerpc machine + an ATI 7500 (r200) BTW, the 7500 is an R100 core and hence doesn't use the r200 but the radeon driver. -- Earthling Michel Dänzer \ Debian (powerpc), XFree86 and DRI developer Software libre

[Dri-devel] [Bug 314] No 3D support for Radeon IGP chips

2003-07-19 Thread bugzilla-daemon
http://bugs.xfree86.org/show_bug.cgi?id=314 --- Additional Comments From [EMAIL PROTECTED] 2003-19-07 11:11 --- Here are the patches for the code on my system. It's in very early stage, for test only. What's working: 4x data rate on IGP320/340 internal graphics. Mesa demos,

[Dri-devel] [Bug 314] No 3D support for Radeon IGP chips

2003-07-19 Thread bugzilla-daemon
http://bugs.xfree86.org/show_bug.cgi?id=314 --- Additional Comments From [EMAIL PROTECTED] 2003-19-07 11:21 --- Created an attachment (id=415) -- (http://bugs.xfree86.org/attachment.cgi?id=415action=view) Linux kernel patch for ATI IGP chipsets The patch is built against the 2.4.18

Re: [Dri-devel] [Patch] Radeon point size 1.0

2003-07-19 Thread dylanp
On Thu, Jul 17, 2003 at 08:03:47AM -0500, Keith Whitwell wrote: Ian Romanick wrote: Keith Whitwell wrote: As you state, the trouble with this patch is that all rasterization falls back to software when poinsize != 1, even if no points are actually rendered. To get good behaviour

[Dri-devel] [Bug 314] No 3D support for Radeon IGP chips

2003-07-19 Thread bugzilla-daemon
http://bugs.xfree86.org/show_bug.cgi?id=314 --- Additional Comments From [EMAIL PROTECTED] 2003-19-07 11:32 --- Created an attachment (id=416) -- (http://bugs.xfree86.org/attachment.cgi?id=416action=view) ATI IGP chipset DRI support This is built on top of current XFree86 CVS

Re: [Dri-devel] radeon triangle fan hang

2003-07-19 Thread Keith Whitwell
Ian Romanick wrote: Michael wrote: Ian Romanick wrote: Here's a patch that prevents Think Tanks (and possibly other heavy users of triangle fans) from crashing on Radeon hardware. To be pedantic - it's not caused by heavy usage of triangle fans, it was caused by a single triangle fan

Re: [Dri-devel] [Patch] Radeon point size 1.0

2003-07-19 Thread Keith Whitwell
[EMAIL PROTECTED] wrote: On Thu, Jul 17, 2003 at 08:03:47AM -0500, Keith Whitwell wrote: Ian Romanick wrote: Keith Whitwell wrote: As you state, the trouble with this patch is that all rasterization falls back to software when poinsize != 1, even if no points are actually rendered. To get

Re: [Dri-devel] DRI weirdness on PowerPC + ATI 7500 (r200)

2003-07-19 Thread Jrme Marant
Michel Dänzer [EMAIL PROTECTED] writes: On Fri, 2003-07-18 at 13:45, [EMAIL PROTECTED] wrote: I tried Tuxracer on a powerpc machine + an ATI 7500 (r200) BTW, the 7500 is an R100 core and hence doesn't use the r200 but the radeon driver. Indeed, it is rv200, not r200. -- Jérôme Marant

[Dri-devel] dri activate problem with radeon 7500 M

2003-07-19 Thread Norbert Preining
-dis6 Intel I845 chipset, support compiled into agpgart radeon 7500M debian/sid with XFree86 4.3.0 from http://www.penguinppc.org/~daniels/sid/i386 radeon-20030719-linux.i386.tar.bz2 from dri.sf.net fixed kernel for mmu_rc4_features EXPORT_SYMBOL agp kernel log: Linux agpgart interface v0.99 (c

Re: [Dri-devel] [Patch] Radeon point size 1.0

2003-07-19 Thread dylanp
On Sat, Jul 19, 2003 at 01:40:01PM -0600, Keith Whitwell wrote: @@ -701,7 +701,7 @@ return GL_TRUE; /* too many vertices */ } - for (i = 0 ; !(flags PRIM_LAST) ; i += length) + for (i = VB-FirstPrimitive ; !(flags PRIM_LAST) ; i += length) { flags =

[Dri-devel] [Patch] Another triangle fan bug

2003-07-19 Thread dylanp
The following patch alters the way triangle fans are split to cover dma buffer boundaries. Without the patch the first polygon after the split will be missing. I've only tested the sw tcl case (as my chipset doesn't support hw tcl) and the problem only manifests when emitting verts (since elts

Re: [Dri-devel] [Patch] Another triangle fan bug

2003-07-19 Thread Ian Romanick
[EMAIL PROTECTED] wrote: The following patch alters the way triangle fans are split to cover dma buffer boundaries. Without the patch the first polygon after the split will be missing. I've only tested the sw tcl case (as my chipset doesn't support hw tcl) and the problem only manifests when

[Dri-devel] Re: Opteron, GinGin and PCIGart

2003-07-19 Thread Mike A. Harris
On Thu, 17 Jul 2003, Ian Romanick wrote: Date: Thu, 17 Jul 2003 09:35:09 -0700 From: Ian Romanick [EMAIL PROTECTED] To: [EMAIL PROTECTED], DRI developer's list [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Content-Type: text/plain; charset=us-ascii; format=flowed Subject: Re: Opteron, GinGin