diff options
author | Jason Ekstrand <[email protected]> | 2015-08-28 17:09:02 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-08-28 17:38:41 -0700 |
commit | 9cebdd78d8cbdc4915c26811cadac4a57f9d6426 (patch) | |
tree | 7b90633bb054c5e46a8bad147bdeafae0a3b7f8b /src/glsl/Makefile.sources | |
parent | 5e7c7b2a4e6b9cbdbcdaa95caac787b4d4953b68 (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.
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 da38e3576bd..acd13ef7745 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 \ |