diff options
author | Timothy Arceri <[email protected]> | 2017-10-23 15:51:29 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-12-04 09:10:30 +1100 |
commit | c797bc6aa7b339deb96be5f9c75662439a4963b6 (patch) | |
tree | 2607442ab4427d011e957d60ab8704d76357f2f7 /src/compiler/Makefile.sources | |
parent | 11efe42a7317d06e78d6a1808314d18af89cf39d (diff) |
nir: add varying array splitting pass
V2:
- fix matrix support, non-array matrices were being skipped in v1
v3:
- handle lowering of tcs output loads correctly
- correctly mark indirect locations for either in or out not both
when processing a stage.
- use nir_src_copy() when lowering stores.
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-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 2ab8e163a26..c5094b7f198 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -226,6 +226,7 @@ NIR_FILES = \ nir/nir_lower_indirect_derefs.c \ nir/nir_lower_int64.c \ nir/nir_lower_io.c \ + nir/nir_lower_io_arrays_to_elements.c \ nir/nir_lower_io_to_temporaries.c \ nir/nir_lower_io_to_scalar.c \ nir/nir_lower_io_types.c \ |