diff options
author | Jason Ekstrand <[email protected]> | 2015-08-28 17:09:02 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-09-09 12:29:21 -0700 |
commit | 1dbe4af9c9e318525fc082b542b93fb7f1e5efba (patch) | |
tree | ee54360108520ca2ea623560717ac209ecf38154 /src/glsl/Makefile.sources | |
parent | f5e08ab6b1351c41000fd2f1a16c1273d2f74d40 (diff) |
nir: Add a pass to lower outputs to temporary variables
This pass can be used as a helper for NIR producers so they don't have to
worry about creating the temporaries themselves.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index 8f468e10ee3..da7fdf95902 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -40,6 +40,7 @@ NIR_FILES = \ nir/nir_lower_locals_to_regs.c \ nir/nir_lower_idiv.c \ nir/nir_lower_io.c \ + nir/nir_lower_outputs_to_temporaries.c \ nir/nir_lower_phis_to_scalar.c \ nir/nir_lower_samplers.cpp \ nir/nir_lower_system_values.c \ |