diff options
author | Jason Ekstrand <[email protected]> | 2015-04-28 17:43:16 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-05-16 11:16:32 -0700 |
commit | 98452cd8ae22d2c7448b87c9090b3f1be09d9bc5 (patch) | |
tree | b2c43cf88cae466e01428944dd9e3c8dc8398e42 /src/glsl/Makefile.sources | |
parent | 573ca4a4a79e19dc4e5160664843677010fe2c86 (diff) |
nir: Add the start of a SPIR-V to NIR translator
At the moment, it can handle the very basics of strings and can ignore
debug instructions. It also has basic support for decorations.
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index d784a810723..be6e4ecf839 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -59,6 +59,7 @@ NIR_FILES = \ nir/nir_remove_dead_variables.c \ nir/nir_search.c \ nir/nir_search.h \ + nir/nir_spirv.h \ nir/nir_split_var_copies.c \ nir/nir_sweep.c \ nir/nir_to_ssa.c \ @@ -68,6 +69,7 @@ NIR_FILES = \ nir/nir_worklist.c \ nir/nir_worklist.h \ nir/nir_types.cpp \ + nir/spirv_to_nir.c \ $(NIR_GENERATED_FILES) # libglsl |