Re: [Mesa-dev] [PATCH] nouveau: Use targ in nv50_ir_generate_code

2015-08-31 Thread Marcos Paulo de souza
Em 31-08-2015 13:31, Ilia Mirkin escreveu: On Mon, Aug 31, 2015 at 12:26 PM, Tobias Klausmann wrote: On 31.08.2015 18:23, Ilia Mirkin wrote: On Mon, Aug 31, 2015 at 12:21 PM, Tobias Klausmann wrote: On 31.08.2015 17:19, Marcos Paulo de souza wrote: ping :) Em 27-08-2015 12:59, Marcos

Re: [Mesa-dev] [PATCH] nouveau: Use targ in nv50_ir_generate_code

2015-08-31 Thread Marcos Paulo de souza
ping :) Em 27-08-2015 12:59, Marcos Paulo de Souza escreveu: instead of call prog->getTarget(), since the target never change in prog. Signed-off-by: Marcos Paulo de Souza --- src/gallium/drivers/nouveau/codegen/nv50_ir.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) d

[Mesa-dev] [PATCH] nouveau: Use targ in nv50_ir_generate_code

2015-08-27 Thread Marcos Paulo de Souza
instead of call prog->getTarget(), since the target never change in prog. Signed-off-by: Marcos Paulo de Souza --- src/gallium/drivers/nouveau/codegen/nv50_ir.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp b/

Re: [Mesa-dev] [PATCH] tgsi/nouveau: Add support for tesselation ctrl and tesselation eval

2015-08-16 Thread Marcos Paulo de souza
Hi Ilia, Em 14-08-2015 01:45, Ilia Mirkin escreveu: On Fri, Aug 14, 2015 at 12:43 AM, Marcos Souza wrote: HI Ilia 2015-08-14 1:31 GMT-03:00 Ilia Mirkin : On Fri, Aug 14, 2015 at 12:25 AM, Marcos Souza wrote: Hi Ilia, 2015-08-14 1:02 GMT-03:00 Ilia Mirkin : On Thu, Aug 13, 2015 at 11:55 P

[Mesa-dev] [PATCH 2/3] tgsi: Fix index printed in tgsi_dump and dst outputs

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza Before this patch, the tgsi_dumps was printing declaration as: DCL IN[][0][0], GENERIC[0] and now it is parsed correctly: DCL IN[][0], GENERIC[0] In the same way, for tess stages, the output addr now is parsed correctly, doing like src parser from: LRP OUT[0][3

[Mesa-dev] [PATCH 3/3] nouveau: recognize tess stages in nouveau_compiler

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza --- src/gallium/drivers/nouveau/nouveau_compiler.c | 4 1 file changed, 4 insertions(+) diff --git a/src/gallium/drivers/nouveau/nouveau_compiler.c b/src/gallium/drivers/nouveau/nouveau_compiler.c index 8660498..495450b 100644 --- a/src/gallium/drivers/nouveau

[Mesa-dev] [PATCHv2 0/3] Add tess stages to mesa/nouveau_compiler

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza Hi guys, first of all, sorry for the flood... my last bunch of patches were sent as a mistake... but now the compiling problem was solved :) I'm happy o send my first patches to mesa, and I have to say a huge thank you to Ilia Mirkin for all the help and ti

[Mesa-dev] [PATCH 1/3] tgsi: set implicit array size for tess stages

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza --- src/gallium/auxiliary/tgsi/tgsi_text.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c b/src/gallium/auxiliary/tgsi/tgsi_text.c index a6675c5..24e2dbd 100644 --- a/src/gallium/auxiliary/tgsi

[Mesa-dev] [PATCH 3/3] nouveau: recognize tess stages in nouveau_compiler

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza --- src/gallium/drivers/nouveau/nouveau_compiler.c | 4 1 file changed, 4 insertions(+) diff --git a/src/gallium/drivers/nouveau/nouveau_compiler.c b/src/gallium/drivers/nouveau/nouveau_compiler.c index 8660498..495450b 100644 --- a/src/gallium/drivers/nouveau

[Mesa-dev] [PATCH 1/3] tgsi: set implicit array size for tess stages

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza --- src/gallium/auxiliary/tgsi/tgsi_text.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c b/src/gallium/auxiliary/tgsi/tgsi_text.c index a6675c5..24e2dbd 100644 --- a/src/gallium/auxiliary/tgsi

[Mesa-dev] [PATCH 2/3] tgsi: Fix index printed in tgsi_dump and dst outputs

2015-08-16 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza Before this patch, the tgsi_dumps was printing declaration as: DCL IN[][0][0], GENERIC[0] and now it is parsed correctly: DCL IN[][0], GENERIC[0] In the same way, for tess stages, the output addr now is parsed correctly, doing like src parser from: LRP OUT[0][3

[Mesa-dev] [PATCH] tgsi/nouveau: Add support for tesselation ctrl and tesselation eval

2015-08-12 Thread Marcos Paulo de Souza
From: Marcos Paulo de Souza Signed-off-by: Marcos Paulo de Souza Suggested-by: Ilia Mirkin --- src/gallium/auxiliary/tgsi/tgsi_text.c | 6 +- src/gallium/drivers/nouveau/nouveau_compiler.c | 4 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/gallium