[Mesa3d-dev] [Bug 25778] radeon driver crashes kwin

2009-12-29 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25778 --- Comment #5 from karaluh kara...@karaluh.pl 2009-12-29 00:08:05 PST --- Here's the full valgrind info: ==5274== Memcheck, a memory error detector ==5274== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al. ==5274== Using

[Mesa3d-dev] [Bug 25778] radeon driver crashes kwin

2009-12-29 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25778 --- Comment #6 from Michel Dänzer mic...@daenzer.net 2009-12-29 00:18:22 PST --- (In reply to comment #4) How can I obtain better backtrace? E.g. by making sure debugging symbols are available for all binaries involved, in

Re: [Mesa3d-dev] [PATCH] RFC: ABI cleanup for libGL.

2009-12-29 Thread Brian Paul
tom fogal wrote: Hi all, I'd like to trim down the libGL ABI. Appended is the start of an approach that is going to work, and I just need to put in the time to complete everything. It will certainly break things if applied as-is, so please don't apply ;) Thoughts? This looks pretty

[Mesa3d-dev] [Bug 25821] New: 'make' for MesaLib-7.6.1 fails even though 'configure' is OK

2009-12-29 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25821 Summary: 'make' for MesaLib-7.6.1 fails even though 'configure' is OK Product: Mesa Version: 7.6 Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW

[Mesa3d-dev] [Bug 25821] 'make' for MesaLib-7.6.1 fails even though 'configure' is OK

2009-12-29 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25821 --- Comment #1 from Sergei Steshenko sergst...@yahoo.com 2009-12-29 08:24:09 PST --- 'configure' was run using the following autogenerated script: #!/bin/sh cd /mnt/sdb8/sergei/AFSWD_debug/build/MesaLib-7.6.1

[Mesa3d-dev] [Bug 25821] 'make' for MesaLib-7.6.1 fails even though 'configure' is OK

2009-12-29 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25821 Sergei Steshenko sergst...@yahoo.com changed: What|Removed |Added Status|NEW |RESOLVED

Re: [Mesa3d-dev] [PATCH] RFC: ABI cleanup for libGL.

2009-12-29 Thread tom fogal
Brian Paul bri...@vmware.com writes: tom fogal wrote: I'd like to trim down the libGL ABI. Appended is the start of an approach that is going to work, and I just need to put in the time to complete everything. Thoughts? This looks pretty good. Just a few comments. 1. The other

Re: [Mesa3d-dev] [PATCH] RFC: ABI cleanup for libGL.

2009-12-29 Thread Dan Nicholson
On Tue, Dec 29, 2009 at 9:58 AM, tom fogal tfo...@alumni.unh.edu wrote: Brian Paul bri...@vmware.com writes: tom fogal wrote: I'd like to trim down the libGL ABI.  Appended is the start of an approach that is going to work, and I just need to put in the time to complete everything.

[Mesa3d-dev] [Bug 25588] [Segmentation fault] vbo_get_minmax_index at vbo/vbo_exec_array.c:81

2009-12-29 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25588 Ian Romanick i...@freedesktop.org changed: What|Removed |Added Keywords||NEEDINFO ---

[Mesa3d-dev] Dri2 swapbuffers,

2009-12-29 Thread Thomas Hellstrom
Kristian, I was looking at how Swapbuffers is done with DRI2 when a fake front is present: The back buffer is copied to the real front, and then the real front is copied back to the fake. This causes some problems in the vmwgfx drivers where reading from the real front should be avoided if

Re: [Mesa3d-dev] [PATCH] Add EGL/GLX extension for direct Gallium access

2009-12-29 Thread Luca Barbieri
The reason why I didn't implement the glX*Gallium*Mesa functions is because the glx* extensions are implemented by libGL, and a driver driver never has chance to export those extensions. And libGL is used for non-gallium drivers. I solved this by adding a DRI driver extension for Gallium.

[Mesa3d-dev] [PATCH] Make st_get_format_info aware of PIPE_FORMAT_Z24S8_UNORM

2009-12-29 Thread Luca Barbieri
Fixes progs/demos/fbotexture on Nouveau. diff --git a/src/mesa/state_tracker/st_format.c b/src/mesa/state_tracker/st_format.c index 3e165c9..5f6f7d8 100644 --- a/src/mesa/state_tracker/st_format.c +++ b/src/mesa/state_tracker/st_format.c @@ -93,7 +93,7 @@ st_get_format_info(enum pipe_format

Re: [Mesa3d-dev] [PATCH] Make st_get_format_info aware of PIPE_FORMAT_Z24S8_UNORM

2009-12-29 Thread Brian Paul
Thanks. Committed to the 7.7 branch. -Brian On Tue, Dec 29, 2009 at 10:41 PM, Luca Barbieri l...@luca-barbieri.com wrote: Fixes progs/demos/fbotexture on Nouveau. diff --git a/src/mesa/state_tracker/st_format.c b/src/mesa/state_tracker/st_format.c index 3e165c9..5f6f7d8 100644 ---