Re: [Mesa-dev] [PATCH 19/23] gallium/tgsi: add support for 64-bit integer immediates.

2016-06-09 Thread Dave Airlie
> I haven't been following the 'double' work so dumb questions/comments: > > First, could you document the new opcodes in gallium/docs/source/tgsi.rst? Yup already done in my tree. > > In the case of micro_u64seq(), etc. why doesn't it do > > dst->u64[0] = src[0].u64[0] == src[1].u64[0] ? ~0UL :

Re: [Mesa-dev] [PATCH 19/23] gallium/tgsi: add support for 64-bit integer immediates.

2016-06-09 Thread Ilia Mirkin
On Thu, Jun 9, 2016 at 2:41 PM, Marek Olšák wrote: > On Thu, Jun 9, 2016 at 4:43 PM, Brian Paul wrote: >> On 06/08/2016 06:48 PM, Dave Airlie wrote: >>> >>> From: Dave Airlie >>> >>> This adds support to TGSI for 64-bit integer immediates. >>> >>> Signed-off-by: Dave Airlie >>> --- >>> src/ga

Re: [Mesa-dev] [PATCH 19/23] gallium/tgsi: add support for 64-bit integer immediates.

2016-06-09 Thread Marek Olšák
On Thu, Jun 9, 2016 at 4:43 PM, Brian Paul wrote: > On 06/08/2016 06:48 PM, Dave Airlie wrote: >> >> From: Dave Airlie >> >> This adds support to TGSI for 64-bit integer immediates. >> >> Signed-off-by: Dave Airlie >> --- >> src/gallium/auxiliary/tgsi/tgsi_dump.c | 14 ++ >> src/gallium/

Re: [Mesa-dev] [PATCH 19/23] gallium/tgsi: add support for 64-bit integer immediates.

2016-06-09 Thread Roland Scheidegger
Am 09.06.2016 um 16:43 schrieb Brian Paul: > On 06/08/2016 06:48 PM, Dave Airlie wrote: >> From: Dave Airlie >> >> This adds support to TGSI for 64-bit integer immediates. >> >> Signed-off-by: Dave Airlie >> --- >> src/gallium/auxiliary/tgsi/tgsi_dump.c | 14 ++ >> src/gallium/auxiliary/t

Re: [Mesa-dev] [PATCH 19/23] gallium/tgsi: add support for 64-bit integer immediates.

2016-06-09 Thread Brian Paul
On 06/08/2016 06:48 PM, Dave Airlie wrote: From: Dave Airlie This adds support to TGSI for 64-bit integer immediates. Signed-off-by: Dave Airlie --- src/gallium/auxiliary/tgsi/tgsi_dump.c | 14 ++ src/gallium/auxiliary/tgsi/tgsi_exec.c | 244 - src/gal

[Mesa-dev] [PATCH 19/23] gallium/tgsi: add support for 64-bit integer immediates.

2016-06-08 Thread Dave Airlie
From: Dave Airlie This adds support to TGSI for 64-bit integer immediates. Signed-off-by: Dave Airlie --- src/gallium/auxiliary/tgsi/tgsi_dump.c | 14 ++ src/gallium/auxiliary/tgsi/tgsi_exec.c | 244 - src/gallium/auxiliary/tgsi/tgsi_parse.c| 2 + src