[Bug 7774] Warcraft III crashes Xorg with R300

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7774  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 14:39 ---
(In reply to comment #14)
> Try these two patches:
> http://www.rasterburn.org/~aet/r300_no_depth_test.patch
> http://www.rasterburn.org/~aet/r300_no_clears.patch
> 
No, they didn't make any change, other than messed up rendering.

(In reply to comment #15)
> By no need for 3d i meaned set driver to fglrx in X.
> Start a dumb Xserver (just Xorg) kill it. Set driver
> back to radeon and try dri. No need for the kernel
> module. Maybe you already do that, report if so.

I first tried it with fglrx.ko, but it's the same without it.

I found out that Warcraft III works when i set all video options to low or off,
at least it passes my testcase (replay of a game of 4 players against 4
computers played at 8x speed). Maybe it's a problem with a lot of polygons or
textures?  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5353] Memory behind 128 MB should be made available ...

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=5353  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 12:57 ---
this should have been taken care of by benh's memmap fixes, unless your card has
sparse maps, then I guess you'd have to set up a GPU specific pool for textures
and such.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: [r300] sauerbraten and ut2k4 performance tips

2006-08-23 Thread Rune Petersen
Aapo Tahkola wrote:
> On Tue, 15 Aug 2006 22:16:48 +0200
> Rune Petersen <[EMAIL PROTECTED]> wrote:
> 
>> Aapo Tahkola wrote:
>>> Sauerbraten:
>>> a) open console and type "/floatvtx 1" or
>>> b) use this patch or
>>> c) wait for this patch to get integrated
>> What version did you use?
>> the latest release hits a fallback:
>>
>> *WARN_ONCE*
>> File r300_render.c function r300Fallback line 402
>> Software fallback:ctx->Polygon.OffsetLine
>> ***
> 
> So I lied. Maybe we should add dri-conf options for them? It's not like
> we could magically fix them all in any case.

Something like this? (could be made nicer =)

I couldn't really decide if it should be part of the driver or as a
separate patch to apply.

It does 2 things:
1) Allows you to disable S3TC, wine-games sometimes need S3TC enabled.
2) Disable fallbacks that usually have low impact.


Rune Petersen
Index: radeon/radeon_screen.c
===
RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/radeon/radeon_screen.c,v
retrieving revision 1.63
diff -u -r1.63 radeon_screen.c
--- radeon/radeon_screen.c  27 May 2006 09:03:25 -  1.63
+++ radeon/radeon_screen.c  17 Aug 2006 19:03:50 -
@@ -153,6 +153,17 @@
 DRI_CONF_DESC(de,"Grösse des Befehlspuffers (in KB)") \
 DRI_CONF_OPT_END
 
+#define DRI_CONF_DISABLE_S3TC(def) \
+DRI_CONF_OPT_BEGIN(disable_s3tc,bool,def) \
+DRI_CONF_DESC(en,"Disable S3TC compression") \
+DRI_CONF_OPT_END
+
+#define DRI_CONF_DISABLE_FALLBACK(def) \
+DRI_CONF_OPT_BEGIN(disable_lowimpact_fallback,bool,def) \
+DRI_CONF_DESC(en,"Disable Low-impact fallback") \
+DRI_CONF_OPT_END
+
+
 const char __driConfigOptions[] =
 DRI_CONF_BEGIN
DRI_CONF_SECTION_PERFORMANCE
@@ -162,12 +173,14 @@
DRI_CONF_MAX_TEXTURE_IMAGE_UNITS(8, 2, 8)
DRI_CONF_MAX_TEXTURE_COORD_UNITS(8, 2, 8)
DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
+   DRI_CONF_DISABLE_FALLBACK(false)
DRI_CONF_SECTION_END
DRI_CONF_SECTION_QUALITY
DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
DRI_CONF_DEF_MAX_ANISOTROPY(1.0, "1.0,2.0,4.0,8.0,16.0")
DRI_CONF_NO_NEG_LOD_BIAS(false)
 DRI_CONF_FORCE_S3TC_ENABLE(false)
+   DRI_CONF_DISABLE_S3TC(false)
DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
@@ -176,7 +189,7 @@
DRI_CONF_NO_RAST(false)
DRI_CONF_SECTION_END
 DRI_CONF_END;
-static const GLuint __driNConfigOptions = 14;
+static const GLuint __driNConfigOptions = 16;
 
 #ifndef RADEON_DEBUG
 int RADEON_DEBUG = 0;
Index: r300/r300_context.c
===
RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/r300/r300_context.c,v
retrieving revision 1.58
diff -u -r1.58 r300_context.c
--- r300/r300_context.c 15 Aug 2006 16:48:06 -  1.58
+++ r300/r300_context.c 17 Aug 2006 19:03:51 -
@@ -166,7 +166,7 @@
0,
 };
 
-
+int disable_lowimpact_fallback;
 /* Create the device specific rendering context.
  */
 GLboolean r300CreateContext(const __GLcontextModes * glVisual,
@@ -331,7 +331,7 @@
 
driInitExtensions(ctx, card_extensions, GL_TRUE);

-   if (r300->radeon.glCtx->Mesa_DXTn) {
+   if (r300->radeon.glCtx->Mesa_DXTn && !driQueryOptionb 
(&r300->radeon.optionCache, "disable_s3tc")) {
  _mesa_enable_extension( ctx, "GL_EXT_texture_compression_s3tc" );
  _mesa_enable_extension( ctx, "GL_S3_s3tc" );
}
@@ -339,6 +339,8 @@
  _mesa_enable_extension( ctx, "GL_EXT_texture_compression_s3tc" );
}
 
+   disable_lowimpact_fallback = driQueryOptionb(&r300->radeon.optionCache, 
"disable_lowimpact_fallback");
+
radeonInitSpanFuncs(ctx);
r300InitCmdBuf(r300);
r300InitState(r300);
Index: r300/r300_render.c
===
RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/r300/r300_render.c,v
retrieving revision 1.108
diff -u -r1.108 r300_render.c
--- r300/r300_render.c  11 Aug 2006 13:59:37 -  1.108
+++ r300/r300_render.c  17 Aug 2006 19:03:51 -
@@ -397,6 +397,9 @@
FALLBACK_IF(ctx->Polygon.OffsetFill); // GL_POLYGON_OFFSET_FILL
FALLBACK_IF(ctx->Fog.Enabled);
 #endif
+
+   if(!disable_lowimpact_fallback){
+
FALLBACK_IF(ctx->Polygon.OffsetPoint); // GL_POLYGON_OFFSET_POINT
FALLBACK_IF(ctx->Polygon.OffsetLine); // GL_POLYGON_OFFSET_LINE
//FALLBACK_IF(ctx->Stencil.Enabled); // GL_STENCIL_TEST
@@ -411,6 +414,9 @@
/* HW doesnt appear to directly support these */
FALLBACK_IF(ctx->Line.SmoothFlag); // GL_LIN

Re: [r300] sauerbraten and ut2k4 performance tips

2006-08-23 Thread Aapo Tahkola
On Tue, 15 Aug 2006 22:16:48 +0200
Rune Petersen <[EMAIL PROTECTED]> wrote:

> Aapo Tahkola wrote:
> > Sauerbraten:
> > a) open console and type "/floatvtx 1" or
> > b) use this patch or
> > c) wait for this patch to get integrated
> 
> What version did you use?
> the latest release hits a fallback:
> 
> *WARN_ONCE*
> File r300_render.c function r300Fallback line 402
> Software fallback:ctx->Polygon.OffsetLine
> ***

So I lied. Maybe we should add dri-conf options for them? It's not like
we could magically fix them all in any case.


-- 
Aapo Tahkola

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7972] New: dPriv->numClipRects sometimes set to 0 for no apparent reason

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7972  
 
   Summary: dPriv->numClipRects sometimes set to 0 for no apparent
reason
   Product: Mesa
   Version: CVS
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Drivers/DRI/r300
AssignedTo: dri-devel@lists.sourceforge.net
ReportedBy: [EMAIL PROTECTED]


On my system, most glean tests fail because of this.
I'm thinking if it's possible that the command buffer gets submitted before
window appears?
I'm using fluxbox if that makes any difference.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5148] [r300] Stale texture data used on first rendering

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=5148  
 

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 11:56 ---
Fixed long time ago.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5353] Memory behind 128 MB should be made available ...

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=5353  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 11:52 ---
This still doesn't work right for my x850 pro.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: [R300] Error with rss screensaver

2006-08-23 Thread Aapo Tahkola
On Wed, 23 Aug 2006 18:36:44 +0200
Dario Laera <[EMAIL PROTECTED]> wrote:

> Hi,
> I've tried euphoria screensaver (http://rss-glx.sourceforge.net/) with
> latest r300 cvs and I get this error:
> 
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramLocalParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramEnvParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramLocalParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramEnvParameters4fvEXT!
> *WARN_ONCE*
> File r300_maos.c function r300EmitArrays line 546
> Cannot handle offset bc302000 with stride 3, comp 3
> ***

I do not see this with rss-glx_0.8.1 .
Anyway, it's not fatal.

-- 
Aapo Tahkola

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: [R300] Error with rss screensaver

2006-08-23 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dario Laera wrote:
> Hi,
> I've tried euphoria screensaver (http://rss-glx.sourceforge.net/) with
> latest r300 cvs and I get this error:
> 
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramLocalParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramEnvParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramLocalParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramEnvParameters4fvEXT!

You need to update your libGL from Mesa as well.  There's a bug in older
versions of libGL that prevent it from working properly with drivers
that try to add new extension functions.

Sorry.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFE7JD3X1gOwKyEAw8RApW5AJ9Oevky/djVeP955RKbp3jHS5tQQACfcQI1
h0Bg5B4dl1su+wyZRrPa+WM=
=S4vd
-END PGP SIGNATURE-

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: [R300] Error with rss screensaver

2006-08-23 Thread Jerome Glisse
On 8/23/06, Dario Laera <[EMAIL PROTECTED]> wrote:
> Hi,
> I've tried euphoria screensaver (http://rss-glx.sourceforge.net/) with
> latest r300 cvs and I get this error:
>
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramLocalParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramEnvParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramLocalParameters4fvEXT!
> DISPATCH ERROR! _glapi_add_dispatch failed to add
> glProgramEnvParameters4fvEXT!
> *WARN_ONCE*
> File r300_maos.c function r300EmitArrays line 546
> Cannot handle offset bc302000 with stride 3, comp 3
> ***
>
> I can't remember exactly the last time I used it, but about 2 month ago
> it was working right.
>
> Thanx, Dario.
>
>

This might be due to Ian's dispatch change. Did you upgraded
your libgl ? Double check that (old version laying around).

best,
Jerome Glisse

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[R300] Error with rss screensaver

2006-08-23 Thread Dario Laera
Hi,
I've tried euphoria screensaver (http://rss-glx.sourceforge.net/) with
latest r300 cvs and I get this error:

DISPATCH ERROR! _glapi_add_dispatch failed to add
glProgramLocalParameters4fvEXT!
DISPATCH ERROR! _glapi_add_dispatch failed to add
glProgramEnvParameters4fvEXT!
DISPATCH ERROR! _glapi_add_dispatch failed to add
glProgramLocalParameters4fvEXT!
DISPATCH ERROR! _glapi_add_dispatch failed to add
glProgramEnvParameters4fvEXT!
*WARN_ONCE*
File r300_maos.c function r300EmitArrays line 546
Cannot handle offset bc302000 with stride 3, comp 3
***

I can't remember exactly the last time I used it, but about 2 month ago
it was working right.

Thanx, Dario.


-- 
Laera Dario
Three years graduate student at Computer Science
University of Bologna
ICQ# 203250303 /==/ http://laera.web.cs.unibo.it
Mail to: laera_at_cs.unibo.it  dario_at_astec.ms

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7271] X Server crash when starting GLX using software with tdfx+drm (3dfx Banshee)

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7271  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 02:51 ---
This looks partially fixed in CVS. I recompiled Mesa and Xorg from Rawhide and
voila, glxinfo ran, but only one time. After that single run, glxinfo or
glxgears hang as before. But this time, instead of hanging somewhere in libdrm,
it starts to eat CPU somewhere in Mesa code:

0x00a82120 in driBindContext (dpy=0x8591008, scrn=0, draw=67108866,
read=67108866, ctx=0x859bc78) at ../common/dri_util.c:337
337 DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);

I'm still stuck with xorg-x11-drv-tdfx-1.1.1.3, though. With 1.2.1 rhgb hangs
and gdm allows me to enter password, then X suddenly dies with no reason in
logs. I'll debug it some other time :) Today it's time to test if metacity will
run composite if I tell it to do it before any other gl program :)  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7271] X Server crash when starting GLX using software with tdfx+drm (3dfx Banshee)

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7271  
 

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Additional Comments From [EMAIL PROTECTED]  2006-08-22 14:40 ---
I think the Summary is misleading, it should be obvious tdfx_dri requires
libglide-v3 and this dependency should be supported by distribution. X shouldn't
obviously crash with SEGV, but that's another matter. Instead, the summary
should be about a hang in tdfx, not only Banshee is affected.

Today I did an upgrade to Xorg 7.1. I use not Banshee, but Voodoo3. As we can
see in pasted Xorg logs, AIGLX initializes drm, but somehow locks it in a hard
way. libdrm's drmGetLock stucks in DRM_IOCTL_LOCK ioctl call (not really looping
with the while there, the ioctl gets stuck and never returns), a bt from 
glxinfo:
#0  0x420ca402 in __kernel_vsyscall ()
#1  0x429c54b9 in ?? () from /lib/libc.so.6
#2  0x00166004 in drmGetLock (fd=4, context=2, flags=0) at xf86drm.c:1231
#3  0x001cd0f4 in tdfxMakeCurrent (driContextPriv=0x8a99040,
driDrawPriv=0x8d2ec20, driReadPriv=0x8d2ec20) at tdfx_context.c:488
(rest shouldn't be relevant, besides I built Mesa with -O2 again after
yesterdays debugging)

This is FC5 with aiglx repository:
libdrm-2.0.2-2.fc5.aiglx
mesa-libGL-6.5-19.fc5.aiglx.l0 ("l0" is my patch for bug #7574)
xorg-x11-server-Xorg-1.1.1-17.fc5.aiglx
kernel-2.6.17-1.2174_FC5 (dmesg says: [drm] Initialized drm 1.0.1 20051102 and
[drm] Initialized tdfx 1.0.0 20010216 on minor 0)

tdfx driver is 1.1.1, but I see people use 1.2.1 and see the same behavior.

The very nasty effect of this hang is that enabling metacity's compositing hangs
whole X (I guess the AIGLX-enabled server locks on the same ioctl, but haven't
tried to debug it).  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7774] Warcraft III crashes Xorg with R300

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7774  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-22 14:27 ---
Try these two patches:
http://www.rasterburn.org/~aet/r300_no_depth_test.patch
http://www.rasterburn.org/~aet/r300_no_clears.patch

There might be some hope left if it locks when the first one is applied but
doesn't when both have.
  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7271] X Server crash when starting GLX using software with tdfx+drm (3dfx Banshee)

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7271  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 05:27 ---
I was wrong. I can run glxinfo as many times I want, until I run glxgears for
the first time, when it hangs, after which all glx apps hang in this
DRM_SPINLOCK loop.

Enabling compositing, on the other hand, hangs the whole Xorg process in the
same, known function, drmGetLock( ).  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7774] Warcraft III crashes Xorg with R300

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=7774  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-22 17:12 ---
By no need for 3d i meaned set driver to fglrx in X.
Start a dumb Xserver (just Xorg) kill it. Set driver
back to radeon and try dri. No need for the kernel
module. Maybe you already do that, report if so.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: AGP/DRI: Question about aper_size_info structs in agp.h

2006-08-23 Thread Alan Cox
Ar Mer, 2006-08-23 am 15:24 +0200, ysgrifennodd Gerhard Pircher:
> BTW: Can anybody explain the format of the graphics address remapping table 
> or point me to some docs where it is described?

Its usually described and defined in the chip documentation. Generally
speaking it is a simple linear array of translations identifying which
page address is mapped to which gart address.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5999] problems with r300 and metacity compositing manager

2006-08-23 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=5999  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-08-23 07:10 ---
I am affected by this too, except for the screen being blue and not seeing the
pointer.
I also actually have an error message from metacity:
Log level 16: No texture created - maybe Texture From Pixmap extension is not
present?

I also filed this against metacity:
http://bugzilla.gnome.org/show_bug.cgi?id=352520  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


AGP/DRI: Question about aper_size_info structs in agp.h

2006-08-23 Thread Gerhard Pircher
Hi,

I was wondering about the differences between the aperture size types 
defined in agp.h. As far as I understand the size_value field in the 
aper_size_info_8/16/32 structs just defines the value to be set in the AGP 
bridge registers to configure a specific AGP aperture size (e.g. 8 MB, 
16MB, etc..).

Wouldn't it be sufficient to define size_value as 32 bit only, or does the 
type of size_value/aper_size_info_x have an influence on the generation of 
the graphics address remapping table (e.g. address alignment) ?

For example the uninorth driver uses the aper_size_info_32 struct to define 
the AGP aperture size, but only defines values between 1 and 64 for the 
size_value field (so aper_size_info_8 would be sufficient).

BTW: Can anybody explain the format of the graphics address remapping table 
or point me to some docs where it is described?

regards,

Gerhard

BTW: Please CC messages to me, as I'm not subscribed to this mailing list.
Thanks!

-- 


"Feel free" – 10 GB Mailbox, 100 FreeSMS/Monat ...
Jetzt GMX TopMail testen: http://www.gmx.net/de/go/topmail

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel