diff options
author | Eric Anholt <[email protected]> | 2015-03-27 14:18:11 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-04-03 11:50:24 -0700 |
commit | ea811b7868d4039499dddf53c109cf0b9da98967 (patch) | |
tree | 2cf102219a2a51df09d08376bfca4d5d69e3015f /src/glsl/Makefile.sources | |
parent | 64bdfc698d6d9f543f82141330ae32de286b8417 (diff) |
nir: Add a lowering pass for texture projectors.
Not much hardware wants them these days, and it might give us a chance to
do CSE or algebraic at the NIR level.
Reviewed-by: Jason Ekstrand <[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 b56fa2608ea..ffce706fa22 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -37,6 +37,7 @@ NIR_FILES = \ nir/nir_lower_phis_to_scalar.c \ nir/nir_lower_samplers.cpp \ nir/nir_lower_system_values.c \ + nir/nir_lower_tex_projector.c \ nir/nir_lower_to_source_mods.c \ nir/nir_lower_vars_to_ssa.c \ nir/nir_lower_var_copies.c \ |