Re: [Mesa-dev] [PATCH 2/3] nir: Add a pass to lower outputs to temporary variables

2015-09-08 Thread Jason Ekstrand
On Tue, Sep 8, 2015 at 5:30 PM, Ian Romanick wrote: > On 09/08/2015 04:51 PM, Jason Ekstrand wrote: >> This pass can be used as a helper for NIR producers so they don't have to >> worry about creating the temporaries themselves. >> --- >> src/glsl/Makefile.sources | 1 + >>

Re: [Mesa-dev] [PATCH 2/3] nir: Add a pass to lower outputs to temporary variables

2015-09-08 Thread Ian Romanick
On 09/08/2015 04:51 PM, Jason Ekstrand wrote: > This pass can be used as a helper for NIR producers so they don't have to > worry about creating the temporaries themselves. > --- > src/glsl/Makefile.sources | 1 + > src/glsl/nir/nir.h | 2 + >

[Mesa-dev] [PATCH 2/3] nir: Add a pass to lower outputs to temporary variables

2015-09-08 Thread Jason Ekstrand
This pass can be used as a helper for NIR producers so they don't have to worry about creating the temporaries themselves. --- src/glsl/Makefile.sources | 1 + src/glsl/nir/nir.h | 2 + src/glsl/nir/nir_lower_outputs_to_temporaries.c | 131 +++