[Mesa-dev] FlightGear r300 GPU lockup CP stall for more than 10000msec

2012-03-21 Thread David Fries
I'm seeing a reproducible GPU lockup after upgrading FlightGear (shaders are also causing an application crash). I've compiled mesa with debugging from master e07b1603e24ddd21a61b11390712c4b39d6a3c5c and tried to get some debug output. It hangs when I'm changing the viewpoint and more when changi

Re: [Mesa-dev] [ANNOUNCE] apitrace 3.0

2012-03-21 Thread José Fonseca
On Sun, Mar 11, 2012 at 7:00 PM, José Fonseca wrote: > On Sun, Mar 11, 2012 at 6:59 PM, Dave Airlie wrote: >> (resend to include list, I only sent it to Jose by accident). >> >> On Fri, Mar 9, 2012 at 8:22 PM, José Fonseca >> wrote: >>> There are several new features in apitrace that deserve an

[Mesa-dev] [PATCH 2/2] i965: When the kernel lacks the LLC check, assume it's present on gen >= 6.

2012-03-21 Thread Eric Anholt
The param wasn't added until drm-intel-next for 3.4, so we were missing our various LLC fast-paths. --- src/mesa/drivers/dri/intel/intel_screen.c | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/mesa/drivers/dri/intel/intel_screen.c b/src/mesa/drivers/dri/inte

[Mesa-dev] [PATCH 1/2] intel: Drop backwards compat code for not having libdrm with the LLC check.

2012-03-21 Thread Eric Anholt
--- src/mesa/drivers/dri/intel/intel_screen.c |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/intel/intel_screen.c b/src/mesa/drivers/dri/intel/intel_screen.c index 3c57c5b..e99b358 100644 --- a/src/mesa/drivers/dri/intel/intel_screen.c +++ b/src/m

Re: [Mesa-dev] [PATCH 1/5] glsl: Comment that expression flattening is used for matrix operations.

2012-03-21 Thread Eric Anholt
On Tue, 20 Mar 2012 12:22:32 -0700, Kenneth Graunke wrote: > Signed-off-by: Kenneth Graunke This series is: Reviewed-by: Eric Anholt pgpEJkrMl0kBj.pgp Description: PGP signature ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists

[Mesa-dev] [Bug 47630] sp_texture.c:322:softpipe_get_transfer: Assertion `level <= resource->last_level' failed.

2012-03-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47630 --- Comment #5 from Kenneth Graunke 2012-03-21 11:15:09 PDT --- (In reply to comment #3) > If there's an assertion failure there's still a bug, isn't there ? Invalid > user > input is no excuse for crashing. Good point. That means somebody is

[Mesa-dev] [PATCH] Add support for GL_EXT_unpack_subimage on GLES2

2012-03-21 Thread Neil Roberts
This extension just permits GL_UNPACK_ROW_LENGTH, GL_UNPACK_SKIP_ROWS and GL_UNPACK_SKIP_PIXELS to be passed to glPixelStore on GLES2 so it is trivial to implement. --- src/mesa/main/APIspec.xml | 26 +- src/mesa/main/extensions.c |1 + 2 files changed, 22 insertions

Re: [Mesa-dev] [PATCH 2/2] st/mesa: set MaxUnrollIterations = 64

2012-03-21 Thread Jose Fonseca
- Original Message - > On 03/21/2012 05:42 AM, Jose Fonseca wrote: > > The increase sounds good to me. > > > > But 64 seems small. SM3 allows loops up to 255 iterations, and > > Microsoft HLSL compiler will unroll loops that big. > > I'm happy to raise the limit higher. If there's no ob

[Mesa-dev] [Bug 41152] [glsl] Shader backend in Regnum Online does not work

2012-03-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41152 --- Comment #9 from Pablo 2012-03-21 08:39:50 PDT --- only you need to fix the shader model 2 mode, I guess it will be enough -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because

Re: [Mesa-dev] [PATCH] glx: Fix glXGetProcAddress() of global glX symbols post-automake conversion.

2012-03-21 Thread Jose Fonseca
Ah yes. Good catch! BTW, -Bsymbolic should be set probably for all shared libraries we produce. Otherwise it is an accident waiting to happen -- we don't want internal relocation to public symbols ever to be resolved elsewhere. Jose - Original Message - > When a GL LD_PRELOAD library l

Re: [Mesa-dev] [PATCH] glx: Fix glXGetProcAddress() of global glX symbols post-automake conversion.

2012-03-21 Thread Marek Olšák
Thank you very much, Eric! Tested-by: Marek Olšák Marek On Tue, Mar 20, 2012 at 10:07 PM, Eric Anholt wrote: > When a GL LD_PRELOAD library like apitrace was used, > glXGetProcAddress() would return the preload's symbols instead of > libGL's symbol, leading to infinite recursion when the retur

[Mesa-dev] [Bug 47649] New: fatal error: shared-glapi/glapi_mapi_tmp.h: No such file or directory

2012-03-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47649 Bug #: 47649 Summary: fatal error: shared-glapi/glapi_mapi_tmp.h: No such file or directory Classification: Unclassified Product: Mesa Version: git Platform: All

Re: [Mesa-dev] [PATCH 2/2] st/mesa: set MaxUnrollIterations = 64

2012-03-21 Thread Brian Paul
On 03/21/2012 05:42 AM, Jose Fonseca wrote: The increase sounds good to me. But 64 seems small. SM3 allows loops up to 255 iterations, and Microsoft HLSL compiler will unroll loops that big. I'm happy to raise the limit higher. If there's no objections let's go with 255. Although I wond

[Mesa-dev] [Bug 47630] sp_texture.c:322:softpipe_get_transfer: Assertion `level <= resource->last_level' failed.

2012-03-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47630 --- Comment #4 from Brian Paul 2012-03-21 06:23:51 PDT --- Vinson, I'm not seeing the failed assertion. The test fails, but I believe that's because of the filtering issue. Please retest after Ken's piglit patch and see what happens. -- Conf

Re: [Mesa-dev] [PATCH 2/2] st/mesa: set MaxUnrollIterations = 64

2012-03-21 Thread Jose Fonseca
The increase sounds good to me. But 64 seems small. SM3 allows loops up to 255 iterations, and Microsoft HLSL compiler will unroll loops that big. Although I wonder why we don't simply unroll everything until we hit PIPE_SHADER_CAP_MAX_INSTRUCTIONS too, when options->EmitNoLoops is false. Jose

[Mesa-dev] [Bug 47630] sp_texture.c:322:softpipe_get_transfer: Assertion `level <= resource->last_level' failed.

2012-03-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47630 --- Comment #3 from Christoph Bumiller 2012-03-21 03:32:26 PDT --- If there's an assertion failure there's still a bug, isn't there ? Invalid user input is no excuse for crashing. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cg