[Mesa-dev] [Bug 37637] unreal tournament crashes with mesa 7.11-dev

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37637 José Fonseca changed: What|Removed |Added CC||jfons...@vmware.com -- Configure bugmail

[Mesa-dev] [Bug 37637] unreal tournament crashes with mesa 7.11-dev

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37637 --- Comment #6 from José Fonseca 2011-05-27 14:21:44 PDT --- (In reply to comment #5) > Now I had some time to investigate this. > > It seems to me that llvm initializes some iostream thing, which calls > dynamic_cast<>() (at libstdc++-v3/inclu

[Mesa-dev] [Bug 37637] unreal tournament crashes with mesa 7.11-dev

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37637 --- Comment #5 from almos 2011-05-27 13:05:10 PDT --- Now I had some time to investigate this. It seems to me that llvm initializes some iostream thing, which calls dynamic_cast<>() (at libstdc++-v3/include/bits/locale_classes.tcc:97), but the u

Re: [Mesa-dev] [PATCH] egl/opengl: add missing AM_CFLAGS in Makefile

2011-05-27 Thread Brian Paul
On 05/25/2011 01:34 PM, Tobias Droste wrote: Signed-off-by: Tobias Droste --- src/egl/opengl/Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/egl/opengl/Makefile.am b/src/egl/opengl/Makefile.am index 0da45d9..2c9956f 100644 --- a/src/egl/opengl/Makefile

Re: [Mesa-dev] [PATCH] Fix glXGetFBConfigFromVisualSGIX.

2011-05-27 Thread Brian Paul
On 05/26/2011 06:19 PM, Stéphane Marchesin wrote: From: Stéphane Marchesin We want to check for Success, otherwise it will fail even with the right visual. NOTE: This is a candidate for the 7.10 branch. Signed-off-by: Antoine Labour Signed-off-by: Stéphane Marchesin --- src/glx/glxcmds.c |

Re: [Mesa-dev] [PATCH] bugfix : gl_program_parameter_list' StateFlags and _mesa_layout_parameters

2011-05-27 Thread Brian Paul
On 05/27/2011 01:00 AM, Pierre-Eric Pelloux-Prayer wrote: Hi, _mesa_layout_parameters builds a new gl_program_parameter from an existing one. The problem is that the StateFlags field is not properly kept, because parameters handled in "PASS1" are simply memcpy'ed. This simple patch fixes the iss

Re: [Mesa-dev] [PATCH 1/5] i965: Drop INTEL_CONFORMANCE=2 fallback code.

2011-05-27 Thread Kenneth Graunke
On 05/27/2011 08:58 AM, Eric Anholt wrote: This was just a duplicate of no_rast=true driconf option, which is relatively standard across drivers. --- src/mesa/drivers/dri/i965/brw_draw.c |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) I strongly approve of gutting this code. I

[Mesa-dev] [PATCH 3/5] i965: Drop strict conformance fallback for GL_LINE_SMOOTH.

2011-05-27 Thread Eric Anholt
We do have hardware antialised lines. If we care, we should actually fix them to be conformant (or as close as possible) instead of using this knob to fool testcases using swrast. For some interesting reading on the state of GL_*_SMOOTH across several drivers, see: http://homepage.mac.com/arekkus

[Mesa-dev] [PATCH 2/5] i965: Drop strict conformance fallback for GL_POLYGON_SMOOTH.

2011-05-27 Thread Eric Anholt
>From my reading of the GL 2.1 spec, no antialiasing is strictly conformant for polygon smoothing. Yes, it's absurd, but then, hardware doesn't support this so maybe it's not so absurd. --- src/mesa/drivers/dri/i965/brw_draw.c |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff

[Mesa-dev] [PATCH 4/5] i965: Drop strict conformance fallback for GL_LINE_STIPPLE.

2011-05-27 Thread Eric Anholt
We implement line stipples, just not *quite* correctly. We have a piglit testcase to use when we want to fix it, if we do. Until then, don't lie to our test suites. --- src/mesa/drivers/dri/i965/brw_draw.c | 18 -- 1 files changed, 0 insertions(+), 18 deletions(-) diff --git a

[Mesa-dev] [PATCH 5/5] i965: Drop remaining strict conformance fallback for GL_POINT_SMOOTH.

2011-05-27 Thread Eric Anholt
We actually could do this in hardware in the fragment shader using gl_PointCoord and the point's size. --- src/mesa/drivers/dri/i965/brw_draw.c | 30 -- 1 files changed, 0 insertions(+), 30 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_draw.c b/src/mesa/dr

[Mesa-dev] [PATCH 1/5] i965: Drop INTEL_CONFORMANCE=2 fallback code.

2011-05-27 Thread Eric Anholt
This was just a duplicate of no_rast=true driconf option, which is relatively standard across drivers. --- src/mesa/drivers/dri/i965/brw_draw.c |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_draw.c b/src/mesa/drivers/dri/i965/brw_draw.c in

[Mesa-dev] [Bug 37660] regression after "st/mesa: rewrite st_choose_format() to be table driven"

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37660 Brian Paul changed: What|Removed |Added AssignedTo|mesa-dev@lists.freedesktop. |brian.e.p...@gmail.com |o

[Mesa-dev] [Bug 37660] regression after "st/mesa: rewrite st_choose_format() to be table driven"

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37660 --- Comment #2 from Andrew Randrianasulu 2011-05-27 07:08:18 PDT --- (In reply to comment #1) > If I send you a debug patch for st_format.c can you do some additional > testing? Sure, yes. On top of current git master ? -- Configure bugmail:

[Mesa-dev] [Bug 37660] regression after "st/mesa: rewrite st_choose_format() to be table driven"

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37660 --- Comment #1 from Brian Paul 2011-05-27 06:27:04 PDT --- If I send you a debug patch for st_format.c can you do some additional testing? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving thi

[Mesa-dev] [Bug 37657] Requesting a fdo account

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37657 Brian Paul changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Mesa-dev] [Bug 37657] Requesting a fdo account

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37657 --- Comment #3 from Lauri Kasanen 2011-05-27 06:17:38 PDT --- I'm a nobody so far, but I was told to request an account by Stéphane Marchesin. I'm ok with github myself, or any other free host though. -- Configure bugmail: https://bugs.freede

[Mesa-dev] [Bug 37657] Requesting a fdo account

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37657 --- Comment #2 from Brian Paul 2011-05-27 05:49:18 PDT --- Who are you? Have you ever posted a patch for Mesa? We generally only grant git-write access after some history of contributions/patches. -- Configure bugmail: https://bugs.freedeskt

[Mesa-dev] [Bug 37660] regression after "st/mesa: rewrite st_choose_format() to be table driven"

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37660 Marek Olšák changed: What|Removed |Added Component|Drivers/Gallium/r300|Mesa core AssignedTo|dri-devel@lis

[Mesa-dev] [Bug 37657] Requesting a fdo account

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37657 Lauri Kasanen changed: What|Removed |Added Attachment #47215|application/x-mspublisher |text/plain mime type|

[Mesa-dev] [Bug 37657] Requesting a fdo account

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37657 --- Comment #1 from Lauri Kasanen 2011-05-27 01:51:58 PDT --- Created an attachment (id=47216) --> (https://bugs.freedesktop.org/attachment.cgi?id=47216) SSH public key -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=emai

[Mesa-dev] [Bug 37657] New: Requesting a fdo account

2011-05-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37657 Summary: Requesting a fdo account Product: Mesa Version: git Platform: All OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component:

Re: [Mesa-dev] [PATCH] nv50: fix emit_add_a16 to emit correct source reg

2011-05-27 Thread Christoph Bumiller
On 27.05.2011 08:59, Trevor Davenport wrote: > Fixes World of Warcraft in OpenGL and D3D without GLSL Thanks, pushed (with minimal adjustment for the MOV case). ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/

[Mesa-dev] [PATCH] nv50: fix emit_add_a16 to emit correct source reg

2011-05-27 Thread Trevor Davenport
emit_add_a16 was using the incorrect source. This caused adds in the form of: add u16 $a0 s32 $a1 u32 0x0200 to have a source AREG of $a0 instead of $a1. Fixes World of Warcraft in OpenGL and D3D without GLSL --- src/gallium/drivers/nv50/nv50_pc_emit.c |4 ++-- 1 files changed,

[Mesa-dev] [PATCH] bugfix : gl_program_parameter_list' StateFlags and _mesa_layout_parameters

2011-05-27 Thread Pierre-Eric Pelloux-Prayer
Hi, _mesa_layout_parameters builds a new gl_program_parameter from an existing one. The problem is that the StateFlags field is not properly kept, because parameters handled in "PASS1" are simply memcpy'ed. This simple patch fixes the issue. Pierre-Eric From 274417760584e0461396feaa43b7223a00895a