diff options
author | Vinson Lee <[email protected]> | 2020-07-03 17:43:51 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-04 01:04:54 +0000 |
commit | 395511d16915297b39d11f6d7ede0e0274d390c9 (patch) | |
tree | 57593d82d6350edbe1d462c627d7f4f1b7f3ed6f | |
parent | a1b89dbc8f4001c19b8b07eb81b9988901a84d50 (diff) |
nir: Add nir_lower_clip_disable.c to SCons build.
Fixes: fb2fe802f638 ("nir: add lowering pass for clip plane enabling")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3217
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5741>
-rw-r--r-- | src/compiler/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 15aa8b596d1..44ece537d93 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -246,6 +246,7 @@ NIR_FILES = \ nir/nir_lower_clamp_color_outputs.c \ nir/nir_lower_clip.c \ nir/nir_lower_clip_cull_distance_arrays.c \ + nir/nir_lower_clip_disable.c \ nir/nir_lower_clip_halfz.c \ nir/nir_lower_variable_initializers.c \ nir/nir_lower_discard_to_demote.c \ |