Re: [Mesa-dev] [PATCH] egl: Add MKDIR_GEN definition

2017-07-19 Thread Nick Sarnie
nto it. > > Signed-off-by: Daniel Stone > Reported-by: Nick Sarnie > Reported-by: Mike Lothian Tested-by: Nick Sarnie > Fixes: 02cc35937277 ("egl/wayland: Use linux-dmabuf interface for buffers") > --- > src/egl/Makefile.am | 2 ++ > 1 file changed, 2 ins

Re: [Mesa-dev] [PATCH] winsys/radeon: fix a wrong NUM_TILE_PIPES value from the kernel

2016-02-07 Thread Nick Sarnie
Hi, This fixes the bug for me. Tested-by: Nick Sarnie Thanks On Sun, Feb 7, 2016 at 2:25 PM, Marek Olšák wrote: > From: Marek Olšák > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94019 > --- > src/gallium/winsys/radeon/drm/radeon_drm_winsys.c | 6 ++ >

Re: [Mesa-dev] [PATCH] nv50, nvc0: fix buffer clearing to respect engine alignment requirements

2016-01-30 Thread Nick Sarnie
Fixes the test on Kepler Tested-by: Nick Sarnie On Sat, Jan 30, 2016 at 10:10 AM, Ilia Mirkin wrote: > It appears that the nvidia render engine is quite picky when it comes to > linear surfaces. It doesn't like non-256-byte aligned offsets, and > apparently doesn't e

Re: [Mesa-dev] [PATCH v2 2/2] targets: use the non-inline sw helpers

2015-11-25 Thread Nick Sarnie
xa/target.c > b/src/gallium/targets/xa/target.c > index 42b1346..308e23b 100644 > --- a/src/gallium/targets/xa/target.c > +++ b/src/gallium/targets/xa/target.c > @@ -1 +1,2 @@ > #include "target-helpers/drm_helper.h" > +#include "target-helpers/sw_helper.h" > -- > 2.6.2 > > ___ > mesa-dev mailing list > mesa-dev@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/mesa-dev > Hi, This fixes Gallium Nine for me. For the series: Tested-by: Nick Sarnie Thanks ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH v2] r600g: Fix special negative immediate constants when using ABS modifier.

2015-10-25 Thread Nick Sarnie
int r600_bytecode_add_cfinst(struct r600_bytecode *bc, > int r600_bytecode_add_alu_type(struct r600_bytecode *bc, > const struct r600_bytecode_alu *alu, unsigned type); > void r600_bytecode_special_constants(uint32_t value, > - unsigned *sel, unsigned *neg); > + unsigned *sel, unsigned *neg, unsigned abs); > void r600_bytecode_disasm(struct r600_bytecode *bc); > void r600_bytecode_alu_read(struct r600_bytecode *bc, > struct r600_bytecode_alu *alu, uint32_t word0, uint32_t > word1); > > ___ > mesa-dev mailing list > mesa-dev@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/mesa-dev > > Tested-By: Nick Sarnie ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 08/10] radeonsi: re-enable unsafe-fp-math for LLVM 3.8

2015-10-10 Thread Nick Sarnie
Hi Marek, I don't get the hang on Dota 2 Reborn with this patch and LLVM/Mesa git. Tested-by: Nick Sarnie Thanks! On Sat, Oct 10, 2015 at 10:12 PM, Connor Abbott wrote: > FWIW, this isn't quite correct with ARB_shader_precision or GL4.1 -- > it specifies that infinities sho

Re: [Mesa-dev] mesa: rework Driver.CopyImageSubData() and related code (v3)

2015-09-23 Thread Nick Sarnie
Hi, The game still works for me with your patch. Tested-by: Nick Sarnie Thanks On Wed, Sep 23, 2015 at 12:55 PM, Ilia Mirkin wrote: > On Wed, Sep 23, 2015 at 12:53 PM, Brian Paul wrote: > > Ilia, can you check that my updates to your temporary st_CopyImageSubData > > funct

Re: [Mesa-dev] [PATCH] r600g: Fix handling of TGSI_OPCODE_ARR with SB

2015-08-13 Thread Nick Sarnie
Tested-by: Nick Sarnie On Thu, Aug 13, 2015 at 2:49 PM, Nick Sarnie wrote: > Tested-by: Nick Sarnie > > On Thu, Aug 13, 2015 at 2:30 PM, Glenn Kennard > wrote: > >> FLT_TO_INT goes in the vector pipes on evergreen/NI, >> not the trans unit as on earlier chips.

Re: [Mesa-dev] [PATCH] gallivm: Fix build against LLVM 3.7 SVN r235265

2015-04-19 Thread Nick Sarnie
LLVM removed JITEmitDebugInfo from TargetOptions since they weren't used v2: Be consistent with the LLVM version check (Aaron Watry) Signed-off-by: Nick Sarnie --- src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 2 +- src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 2 +- 2 files chang

[Mesa-dev] [PATCH] gallivm: Fix build against LLVM 3.7 SVN r235265

2015-04-19 Thread Nick Sarnie
LLVM removed JITEmitDebugInfo from TargetOptions since they weren't used Signed-off-by: Nick Sarnie --- src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 2 +- src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ga

[Mesa-dev] [PATCH] ilo: Advertise DMA-BUF

2014-10-15 Thread Nick Sarnie
diff --git a/src/gallium/targets/pipe-loader/pipe_i965.c b/src/gallium/targets/pipe-loader/pipe_i965.c index f4d447c..810dffc 100644 --- a/src/gallium/targets/pipe-loader/pipe_i965.c +++ b/src/gallium/targets/pipe-loader/pipe_i965.c @@ -21,6 +21,27 @@ create_screen(int fd) return screen; }

[Mesa-dev] [PATCH] ilo: Build pipe-loader for ilo

2014-09-12 Thread Nick Sarnie
Trivial patch to create the pipe loader for ilo. All the code was already there. Signed-off-by: Nick Sarnie --- src/gallium/targets/pipe-loader/Makefile.am | 14 ++ src/gallium/targets/pipe-loader/pipe_i965.c | 26 ++ 2 files changed, 40 insertions(+) create