[Mesa-dev] [Bug 96953] dri2_wl_swrast crashes on 64 bit, but not on 32 bit

2016-07-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=96953 --- Comment #2 from n3rdopolis --- If I run the same program with export SWRAST_NO_PRESENT=1 nothing appears, the program (calamares) seems to run without crashing, it might be a bug in swrast? -- You are

Re: [Mesa-dev] [PATCH v2] nvc0/ir: fix up an assertion in emitUADD()

2016-07-23 Thread Ilia Mirkin
Reviewed-by: Ilia Mirkin On Sat, Jul 23, 2016 at 6:39 PM, Samuel Pitoiset wrote: > It's illegal to have neg modifiers on both sources for OP_ADD, > and it's illegal to have OP_SUB with just src0 neg. > > Signed-off-by: Samuel Pitoiset

[Mesa-dev] [PATCH v2] nvc0/ir: fix up an assertion in emitUADD()

2016-07-23 Thread Samuel Pitoiset
It's illegal to have neg modifiers on both sources for OP_ADD, and it's illegal to have OP_SUB with just src0 neg. Signed-off-by: Samuel Pitoiset --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-)

Re: [Mesa-dev] [GSoC] Update about floating point library

2016-07-23 Thread Connor Abbott
On Sat, Jul 23, 2016 at 3:32 PM, tournier.elie wrote: > Hello, > > I hope you are well and that you enjoy these beautiful summer days. > > You can found a new post on my blog : https://hopetech.github.io/ . > During these few days, I implemented eq_fp64, le_fp64, lt_fp64,

[Mesa-dev] [GSoC] Update about floating point library

2016-07-23 Thread tournier.elie
Hello, I hope you are well and that you enjoy these beautiful summer days. You can found a new post on my blog : https://hopetech.github.io/ . During these few days, I implemented eq_fp64, le_fp64, lt_fp64, mul_fp64, add_fp64 and fp64-to-fp32-conversion. The code can be found on

Re: [Mesa-dev] Mesa (master): Revert "radeon/llvm: Use alloca instructions for larger arrays"

2016-07-23 Thread Nicolai Hähnle
On 22.07.2016 12:08, Michel Dänzer wrote: On 21.07.2016 18:17, Matt Arsenault wrote: On Jul 21, 2016, at 01:03, Michel Dänzer > wrote: On 21.07.2016 00:04, Michel Dänzer wrote: On 15.07.2016 05:15, Marek =?UNKNOWN?B?T2zFocOhaw==?= wrote: Module:

Re: [Mesa-dev] [PATCH] nvc0/ir: remove wrong assert in emitUADD()

2016-07-23 Thread Ilia Mirkin
On Jul 23, 2016 5:45 AM, "Samuel Pitoiset" wrote: > > > > On 07/23/2016 02:53 AM, Ilia Mirkin wrote: >> >> No, it's not. But if the real op is OP_SUB, then the logic is a bit >> different, since there's an implied extra neg on src(1). > > > Right, it's legal but for

Re: [Mesa-dev] [RFC mesa] Introduce .editorconfig

2016-07-23 Thread Nicolai Hähnle
On 22.07.2016 17:09, Emil Velikov wrote: On 18 July 2016 at 00:46, Eric Engestrom wrote: A few weeks ago, Jose Fonseca suggested [0] we use .editorconfig files to try and enforce the formatting of the code, to which Michel Dänzer suggested [1] we start by importing the

Re: [Mesa-dev] [PATCH v2 1/2] vl: add a lanczos interpolation filter v2

2016-07-23 Thread Nayan Deshmukh
Hi Christian, I tried using the approach, the artifacts are gone. But for some videos the output quality has reduced. The quality for such videos is somewhere between nearest neighbor and linear interpolation. Regards, Nayan On Thu, Jul 21, 2016 at 7:48 PM, Christian König

Re: [Mesa-dev] [PATCH] nvc0/ir: remove wrong assert in emitUADD()

2016-07-23 Thread Samuel Pitoiset
On 07/23/2016 02:53 AM, Ilia Mirkin wrote: No, it's not. But if the real op is OP_SUB, then the logic is a bit different, since there's an implied extra neg on src(1). Right, it's legal but for OP_SUB only. On Fri, Jul 22, 2016 at 7:47 PM, Samuel Pitoiset