Re: [Mesa-dev] [PATCH] i965/nir/fs: removed unneeded support for global variables

2015-07-16 Thread Kenneth Graunke
On Friday, June 26, 2015 01:47:48 PM Alejandro Piñeiro wrote: > As functions are inlined, and nir_lower_global_vars_to_local gets > run, all global variables are lowered to local variables. > --- > > Jason Enkstrand already confirmed that global support is not needed > on the bug open for the nir/

Re: [Mesa-dev] [PATCH] i965/nir/fs: removed unneeded support for global variables

2015-07-16 Thread Alejandro Piñeiro
Ping. Any possibility of a patch review? FWIW, the patch itself is pretty small. On 26/06/15 13:47, Alejandro Piñeiro wrote: > As functions are inlined, and nir_lower_global_vars_to_local gets > run, all global variables are lowered to local variables. > --- > > Jason Enkstrand already confirmed

[Mesa-dev] [PATCH] i965/nir/fs: removed unneeded support for global variables

2015-06-26 Thread Alejandro Piñeiro
As functions are inlined, and nir_lower_global_vars_to_local gets run, all global variables are lowered to local variables. --- Jason Enkstrand already confirmed that global support is not needed on the bug open for the nir/vec4 support: https://bugs.freedesktop.org/show_bug.cgi?id=89580#c9 So th