[Mesa-dev] [Bug 75010] clang: error: unknown argument: '-fstack-protector-strong'

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75010 Vinson Lee changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [PATCH] gallium: reflect likely outcome in execution flow

2014-05-23 Thread Timothy Arceri
On Thu, 2014-05-22 at 09:54 -0400, Ilia Mirkin wrote: > On Thu, May 22, 2014 at 2:56 AM, Timothy Arceri wrote: > > On Wed, 2014-05-21 at 18:05 -0400, Ilia Mirkin wrote: > > > > On Wed, May 21, 2014 at 6:02 PM, Timothy Arceri > > wrote: > >> Unless we run out of memory the old if statement would a

[Mesa-dev] i965: Need help testing patches to fix bogus antaliasing in Gen4/Gen5

2014-05-23 Thread Iago Toral
Hi, Short story: I have two implementations of a patch to fix this bug: https://bugs.freedesktop.org/show_bug.cgi?id=78679 I would need help testing both on Gen4 (I don't have Gen4 hardware available) and I would also like to understand why only on of them works on Gen5. There is a patch making

Re: [Mesa-dev] [PATCH 2/2] gallivm: Disable workaround for PR12833 on LLVM 3.2+.

2014-05-23 Thread Jose Fonseca
I'll assume there is no objection for the series and take the liberty to push. Pretty minor stuff anyway. Jose - Original Message - > From: José Fonseca > > Fixed upstream. > --- > src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(

[Mesa-dev] [Bug 79095] x86/common_x86.c:348:14: error: use of undeclared identifier 'bit_SSE4_1'

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79095 José Fonseca changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Mesa-dev] [Bug 78716] Fix Mesa bugs for running Unreal Engine 4.1 Cave effects demo compiled for Linux

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78716 --- Comment #8 from Tapani Pälli --- BTW according to comments here: http://www.phoronix.com/forums/showthread.php?100299-Ue4-cave-demo-for-linux/page2 the asserts have been fixed in UE4 upstream (?) Please consider compiling and testing again,

[Mesa-dev] [Bug 79115] New: glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0) doesn't unbind stencil buffer

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79115 Priority: medium Bug ID: 79115 Assignee: mesa-dev@lists.freedesktop.org Summary: glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0)

[Mesa-dev] [Bug 79115] glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0) doesn't unbind stencil buffer

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79115 --- Comment #1 from James Legg --- Created attachment 99628 --> https://bugs.freedesktop.org/attachment.cgi?id=99628&action=edit Patch This patch made against the mesa-10.1.4 tag fixes the bug for me. -- You are receiving this mail because:

Re: [Mesa-dev] [PATCH 1/3] Fix build for darwin

2014-05-23 Thread Emil Velikov
On 21/05/14 14:02, Jon TURNEY wrote: > Fix build for darwin, when ./configured --disable-driglx-direct > > - darwin ld doesn't support -Bsymbolic or --version-script, so check if ld > supports those options before using them There are four move cases that can use HAVE_LD_VERSION_SCRIPT. First one

Re: [Mesa-dev] [PATCH 3/3] Fix build of appleglx

2014-05-23 Thread Emil Velikov
On 21/05/14 14:02, Jon TURNEY wrote: > Define GLX_USE_APPLEGL, as config/darwin used to, to turn on specific code to > use the applegl direct renderer > > Convert src/glx/apple/Makefile to automake > > Since the applegl libGL is now built by linking libappleglx into libGL, rather > than by linkin

[Mesa-dev] [Bug 79115] glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0) doesn't unbind stencil buffer

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79115 --- Comment #2 from Brian Paul --- The patch looks good, but I think I'll improve the comments. I'll commit/push this and tag it for the stable branches too. Thanks, James. -- You are receiving this mail because: You are the assignee for the bu

[Mesa-dev] [Bug 79115] glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0) doesn't unbind stencil buffer

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

[Mesa-dev] [PATCH] radeonsi: Implement DMA blit for CIK (wip)

2014-05-23 Thread Alex Deucher
This implements blit support using the partial blit packets which properly handle subwindow blits. linear <-> tiled blits aren't quite right and cause GPU page faults in certain cases. Signed-off-by: Alex Deucher --- src/gallium/drivers/radeonsi/Makefile.sources | 1 + src/gallium/drivers/rade

[Mesa-dev] [PATCH 2/2] nvc0: revert mistaken logic to collapse color outputs to the beginning

2014-05-23 Thread Ilia Mirkin
In commit af38ef907, I added a "fix" to color outputs not being assigned correctly when sample mask was being output. This was totally wrong -- the color indices (i.e. "si" values) were the ones that were wrong. Undo that hunk. Signed-off-by: Ilia Mirkin Cc: "10.2" --- src/gallium/drivers/nouve

[Mesa-dev] [PATCH 1/2] mesa/st: fix color outputs in presence of sample mask output

2014-05-23 Thread Ilia Mirkin
Commit c5d822dad90 added support for sample mask incorrectly. It became treated as a color output, and messed up the color output indices. Revert the hunk that did that, and add explicit support just like for depth/stencil writes. Signed-off-by: Ilia Mirkin Cc: "10.2" --- Marek, perhaps this is

[Mesa-dev] [Bug 79095] x86/common_x86.c:348:14: error: use of undeclared identifier 'bit_SSE4_1'

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79095 --- Comment #3 from Matt Turner --- (In reply to comment #2) > (In reply to comment #1) > > Great. Clang's macro is named wrong. > > Yep, it appear so. > > I took the liberty of pushing a simple fix: > > > commit 94dbc16dc4c1b7685a9dab89a39e8

Re: [Mesa-dev] Mesa (master): mesa/x86: Fix build with clang 3.4.

2014-05-23 Thread Ian Romanick
Should this also go to 10.2? Earlier? On 05/23/2014 03:37 AM, Jose Fonseca wrote: > Module: Mesa > Branch: master > Commit: 94dbc16dc4c1b7685a9dab89a39e8fea844194df > URL: > http://cgit.freedesktop.org/mesa/mesa/commit/?id=94dbc16dc4c1b7685a9dab89a39e8fea844194df > > Author: José Fonseca >

Re: [Mesa-dev] Mesa (master): mesa/x86: Fix build with clang 3.4.

2014-05-23 Thread Matt Turner
On Fri, May 23, 2014 at 9:27 AM, Ian Romanick wrote: > Should this also go to 10.2? Earlier? No, I just committed the SSE 4.1 detection code yesterday. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listin

Re: [Mesa-dev] [PATCH] i965: Properly return *RESET* status in glGetGraphicsResetStatusARB

2014-05-23 Thread Ian Romanick
I made a couple tweaks to the formatting and pushed. Thanks! This is also queued for 10.2. It should be in release candidate 4 later today. On 05/15/2014 10:00 PM, Pavel Popov wrote: > The glGetGraphicsResetStatusARB from ARB_robustness extension always returns > GUILTY_CONTEXT_RESET_ARB > and

Re: [Mesa-dev] Mesa 10.2 release candidate 3

2014-05-23 Thread Ian Romanick
On 05/20/2014 06:31 AM, Rob Clark wrote: > Hey Ian, > > I wonder to what extent you might tolerate a late freedreno pull req? > I've backported nearly all of the recent freedreno commits on master > to a 10.2 based branch: > > https://github.com/freedreno/mesa/commits/freedreno-10.2 Are these

[Mesa-dev] [Bug 79039] [TRACKER] Mesa 10.2 release tracker

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79039 Bug 79039 depends on bug 78769, which changed state. Bug 78769 Summary: i965: glGetGraphicsResetStatusARB always returns GUILTY_CONTEXT_RESET_ARB status for guilty context https://bugs.freedesktop.org/show_bug.cgi?id=78769 What|R

[Mesa-dev] [Bug 79095] x86/common_x86.c:348:14: error: use of undeclared identifier 'bit_SSE4_1'

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79095 Vinson Lee changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

Re: [Mesa-dev] [PATCH 1/2] mesa/st: fix color outputs in presence of sample mask output

2014-05-23 Thread Marek Olšák
Thank you, it fixes the hangs!! Do the sample mask tests pass on nouveau now? They fail on radeonsi. Marek On Fri, May 23, 2014 at 5:39 PM, Ilia Mirkin wrote: > Commit c5d822dad90 added support for sample mask incorrectly. It became > treated as a color output, and messed up the color output in

Re: [Mesa-dev] [PATCH 1/2] mesa/st: fix color outputs in presence of sample mask output

2014-05-23 Thread Ilia Mirkin
On Fri, May 23, 2014 at 2:13 PM, Marek Olšák wrote: > Thank you, it fixes the hangs!! Great :) > > Do the sample mask tests pass on nouveau now? They fail on radeonsi. Nope. I've spent some time to try to reproduce more and more of the blob's command stream, with no effect. The last thing I not

[Mesa-dev] [Bug 54080] glXQueryDrawable fails with GLXBadDrawable for a Window in direct context

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54080 --- Comment #3 from ajax at nwnk dot net --- (In reply to comment #2) > Adam, you seem to have looked at this a couple of times. Will it be fixed > with your pending GLX patches? It's a Mesa bug, it's not sending MakeCurrent protocol for direct

[Mesa-dev] [Bug 79039] [TRACKER] Mesa 10.2 release tracker

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79039 Vinson Lee changed: What|Removed |Added Depends on||70359 -- You are receiving this mail becau

[Mesa-dev] [Bug 70359] [llvmpipe] piglit arb_shader_texture_lod-texgrad regression

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70359 Vinson Lee changed: What|Removed |Added Blocks||79039 -- You are receiving this mail becau

[Mesa-dev] [PATCH 2/2] glsl: replace strncmp("gl_") calls with new is_gl_identifier() helper

2014-05-23 Thread Brian Paul
Makes things a little easier to read. --- src/glsl/ast_to_hir.cpp |8 src/glsl/ir.h |9 + src/glsl/ir_print_visitor.cpp |2 +- src/glsl/link_uniforms.cpp|4 ++-- src/glsl/link_varyings.cpp|3 +-- 5 files changed, 17 insertions(+),

[Mesa-dev] [PATCH 1/2] glsl: fix use-after free bug/crash in ast_declarator_list::hir()

2014-05-23 Thread Brian Paul
The call to get_variable_being_redeclared() may delete 'var' so we can't reference var->name afterward. We fix that by examining the var's name before making that call. Fixes valgrind warnings and possible crash when running the piglit tests/spec/glsl-1.30/execution/clipping/vs-clip-distance-in-p

Re: [Mesa-dev] Mesa 10.2 release candidate 3

2014-05-23 Thread Rob Clark
On Fri, May 23, 2014 at 12:50 PM, Ian Romanick wrote: > On 05/20/2014 06:31 AM, Rob Clark wrote: >> Hey Ian, >> >> I wonder to what extent you might tolerate a late freedreno pull req? >> I've backported nearly all of the recent freedreno commits on master >> to a 10.2 based branch: >> >> https:

[Mesa-dev] [Bug 71199] [llvmpipe] piglit glean polygonOffset regression

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71199 Vinson Lee changed: What|Removed |Added Blocks||79039 -- You are receiving this mail becau

[Mesa-dev] [Bug 79039] [TRACKER] Mesa 10.2 release tracker

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79039 Vinson Lee changed: What|Removed |Added Depends on||71199 -- You are receiving this mail becau

[Mesa-dev] [Bug 72326] [swrast] piglit glean pbo regression

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72326 Vinson Lee changed: What|Removed |Added Blocks||79039 -- You are receiving this mail becau

[Mesa-dev] [Bug 79039] [TRACKER] Mesa 10.2 release tracker

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79039 Vinson Lee changed: What|Removed |Added Depends on||72326 -- You are receiving this mail becau

[Mesa-dev] Mesa 10.2 release candidate 4

2014-05-23 Thread Ian Romanick
Mesa 10.2 release candidate 4 is now available for testing. The current plan of record was for this to be the last release candidate, and the 10.2 release is planned for Friday, May 30th. There are *45* patches in this release candidate. 21 of them are in the freedreno driver, and 2 of them are

[Mesa-dev] [Bug 78914] [llvmpipe] Front/Backfaces do not cover the same pixels when rasterized

2014-05-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78914 --- Comment #9 from Roland Scheidegger --- When I play back the trace I don't see any such errors (doing snapshots 2 images were captured with cubes though both frames were identical). -- You are receiving this mail because: You are the assigne