diff options
author | Nicolai Hähnle <[email protected]> | 2017-06-09 11:35:25 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-07-31 14:55:29 +0200 |
commit | bce6f9987522ebb585571f7333d47e41e1dead9b (patch) | |
tree | 51f5b98f206faefe05724a2cbfee37c4d76f8929 /src/compiler/Makefile.sources | |
parent | f1da97ef7a8408155d2627ef55092c2aa78c81ac (diff) |
nir: add nir_lower_samplers_as_deref pass
This pass is a replacement for the nir_lower_samplers pass, which has the
advantage of keeping sampler references as derefs. This allows a unified
treatment of texture instructions and image intrinsics in the backend.
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 6e08dfb8448..4f4406fe0ed 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -233,6 +233,7 @@ NIR_FILES = \ nir/nir_lower_regs_to_ssa.c \ nir/nir_lower_returns.c \ nir/nir_lower_samplers.c \ + nir/nir_lower_samplers_as_deref.c \ nir/nir_lower_system_values.c \ nir/nir_lower_tex.c \ nir/nir_lower_to_source_mods.c \ |