Re: [Mesa-dev] [PATCH 01/10] i965/nir: Do lower_io late for fragment shaders

2016-02-26 Thread Iago Toral
Series is: Reviewed-by: Iago Toral Quiroga On Thu, 2016-02-25 at 11:01 -0800, Kenneth Graunke wrote: > From: Jason Ekstrand > > The Vulkan driver wants to be able to delete fragment outputs that are > beyond key.nr_color_regions; this is a lot

[Mesa-dev] [PATCH 01/10] i965/nir: Do lower_io late for fragment shaders

2016-02-25 Thread Kenneth Graunke
From: Jason Ekstrand The Vulkan driver wants to be able to delete fragment outputs that are beyond key.nr_color_regions; this is a lot easier if we lower outputs at specialization time rather than link time. (Rationale added to commit message by Ken) ---