Re: [Mesa-dev] [PATCH 5/8] glsl: track which program inputs are doubles

2015-05-04 Thread Dave Airlie
On 5 May 2015 at 09:53, Ian Romanick wrote: > On 04/29/2015 06:14 PM, Dave Airlie wrote: >> From: Dave Airlie >> >> instead of doing the attempts at dual slot handling here, >> let the backend do it. > > Just curious... why? It seems like everyone wants the same mapping, so > doing it one place

Re: [Mesa-dev] [PATCH 5/8] glsl: track which program inputs are doubles

2015-05-04 Thread Ian Romanick
On 04/29/2015 06:14 PM, Dave Airlie wrote: > From: Dave Airlie > > instead of doing the attempts at dual slot handling here, > let the backend do it. Just curious... why? It seems like everyone wants the same mapping, so doing it one place ought to be better. There is a lot of stuff in the GL

[Mesa-dev] [PATCH 5/8] glsl: track which program inputs are doubles

2015-04-29 Thread Dave Airlie
From: Dave Airlie instead of doing the attempts at dual slot handling here, let the backend do it. Signed-off-by: Dave Airlie --- src/glsl/ir_set_program_inouts.cpp | 14 ++ src/mesa/main/mtypes.h | 1 + 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/s