Re: [Mesa-dev] [PATCH] mesa/uniforms: fix get_uniform for doubles (v2)

2015-10-11 Thread Ilia Mirkin
On Sun, Oct 11, 2015 at 11:07 PM, Dave Airlie wrote: > The initial glGetUniformdv support didn't cover all the > casting cases that are apparantly legal, and cts seems to > test for them. > > I've updated the piglit test to cover these cases now. > > v2: fix indentation - it's all broken in this f

[Mesa-dev] [PATCH] mesa/uniforms: fix get_uniform for doubles (v2)

2015-10-11 Thread Dave Airlie
The initial glGetUniformdv support didn't cover all the casting cases that are apparantly legal, and cts seems to test for them. I've updated the piglit test to cover these cases now. v2: fix indentation - it's all broken in this file (Ilia) fix src/dst index tracking in light of fp64 support (Il