diff options
author | Timothy Arceri <[email protected]> | 2018-04-30 20:39:43 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-05-01 12:39:33 +1000 |
commit | 6487e7a30c9e4c2a417ddfe632d5f68e065e21eb (patch) | |
tree | 561df9b47ea4efa99c89dd80dfd22a1a1e122ae8 /src/compiler/Makefile.sources | |
parent | f56e22e49673e8234a7fe0c241b4c3eae4752f34 (diff) |
nir: move GL specific passes to src/compiler/glsl
With this we should have no passes in src/compiler/nir with any
dependencies on headers from core GL Mesa.
Reviewed-by: Alejandro PiƱeiro <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index aca9dab476e..b98ea673705 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -25,6 +25,10 @@ LIBGLSL_FILES = \ glsl/builtin_types.cpp \ glsl/builtin_variables.cpp \ glsl/generate_ir.cpp \ + glsl/gl_nir_lower_atomics.c \ + glsl/gl_nir_lower_samplers.c \ + glsl/gl_nir_lower_samplers_as_deref.c \ + glsl/gl_nir.h \ glsl/glsl_parser_extras.cpp \ glsl/glsl_parser_extras.h \ glsl/glsl_symbol_table.cpp \ @@ -211,7 +215,6 @@ NIR_FILES = \ nir/nir_lower_64bit_packing.c \ nir/nir_lower_alpha_test.c \ nir/nir_lower_alu_to_scalar.c \ - nir/nir_lower_atomics.c \ nir/nir_lower_atomics_to_ssbo.c \ nir/nir_lower_bitmap.c \ nir/nir_lower_clamp_color_outputs.c \ @@ -237,8 +240,6 @@ NIR_FILES = \ nir/nir_lower_phis_to_scalar.c \ 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_subgroups.c \ nir/nir_lower_system_values.c \ nir/nir_lower_tex.c \ |