diff options
author | Dave Airlie <[email protected]> | 2019-09-05 15:46:31 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2019-11-28 14:48:44 +1000 |
commit | 44a6b0107b37ad9644d3435cf6d2d29b6779654f (patch) | |
tree | 29d61185416a970af81dfa8be93399c92db6e244 /src/gallium/auxiliary/Makefile.sources | |
parent | 18ed09d4492f02275235dea6b210a6164871ab17 (diff) |
gallivm: add nir->llvm translation (v2)
This add the initial implementation of the NIR->LLVM conversion
for llvmpipe NIR support.
v2: lower bool to int32 in nir not llvm
Acked-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/Makefile.sources')
-rw-r--r-- | src/gallium/auxiliary/Makefile.sources | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile.sources b/src/gallium/auxiliary/Makefile.sources index 567cb00d7ee..4ee99b8f063 100644 --- a/src/gallium/auxiliary/Makefile.sources +++ b/src/gallium/auxiliary/Makefile.sources @@ -422,6 +422,9 @@ GALLIVM_SOURCES := \ gallivm/lp_bld_logic.h \ gallivm/lp_bld_misc.cpp \ gallivm/lp_bld_misc.h \ + gallivm/lp_bld_nir.c \ + gallivm/lp_bld_nir.h \ + gallivm/lp_bld_nir_soa.c \ gallivm/lp_bld_pack.c \ gallivm/lp_bld_pack.h \ gallivm/lp_bld_printf.c \ |