Re: [Mesa-dev] [PATCH 0/2] r600: Fix array texture slice index evaluation

2018-06-24 Thread Dave Airlie
/home/airlied/devel/piglit/bin/textureGather fs nonconst r 0 float 2DArray repeat amongst others appears to regress with these two. Dave. On 22 June 2018 at 19:37, Gert Wollny wrote: > these two patches correct the offets and the rounding modes for the > index evaluation when accessing

[Mesa-dev] [Bug 107022] [RADV] The Witcher 3: Trembling of trees

2018-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107022 Bug ID: 107022 Summary: [RADV] The Witcher 3: Trembling of trees Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW

[Mesa-dev] [Bug 107022] [RADV] The Witcher 3: Trembling of trees

2018-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107022 zefkerri...@gmail.com changed: What|Removed |Added CC||zefkerri...@gmail.com -- You

Re: [Mesa-dev] [PATCH] nir: call nir_index_local_regs(..) to update reg_alloc

2018-06-24 Thread Christian Gmeiner
Hi Jason Am So., 24. Juni 2018 um 22:14 Uhr schrieb Jason Ekstrand : > > In general, drivers and passes shouldn't rely on the results of > index_*_regs or index_ssa_defs after an optimization or lowering pass is > run. We've considered the results of those functions to be too volatile to > try

[Mesa-dev] [PATCH] nouveau: fix 3D blitter for unsigned to signed integer conversions

2018-06-24 Thread Karol Herbst
fixes a couple of packed_pixel CTS tests. No regressions inside a CTS run. Signed-off-by: Karol Herbst --- src/gallium/drivers/nouveau/nv50/nv50_blit.h | 21 ++- .../drivers/nouveau/nv50/nv50_surface.c | 14 +++-- 2 files changed, 23 insertions(+), 12 deletions(-)

Re: [Mesa-dev] [PATCH] nir: call nir_index_local_regs(..) to update reg_alloc

2018-06-24 Thread Jason Ekstrand
In general, drivers and passes shouldn't rely on the results of index_*_regs or index_ssa_defs after an optimization or lowering pass is run. We've considered the results of those functions to be too volatile to try and keep up to date. Drivers or passes are expected to call the indexing

[Mesa-dev] [PATCH] nir: call nir_index_local_regs(..) to update reg_alloc

2018-06-24 Thread Christian Gmeiner
After calling nir_lower_regs_to_ssa(..) nir_function_impl's reg_alloc counter still hold its old value. Just call nir_index_local_regs(..) to set reg_alloc to the correct value - which should be 0. Signed-off-by: Christian Gmeiner --- src/compiler/nir/nir_lower_regs_to_ssa.c | 2 ++ 1 file