diff options
author | Ian Romanick <[email protected]> | 2018-08-18 11:46:46 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2019-05-06 22:52:28 -0700 |
commit | 158370ed2a012574bcc18e98075712da04fe22e8 (patch) | |
tree | 6d643e644c32a8d1cb079e344c7c541a8f6f0280 /src/compiler/nir/meson.build | |
parent | dc566a033cca87821d55ff0f68ee8a108eb0e2a3 (diff) |
nir/flrp: Add new lowering pass for flrp instructions
This pass will soon grow to include some optimizations that are
difficult or impossible to implement correctly within nir_opt_algebraic.
It also include the ability to generate strictly correct code which the
current nir_opt_algebraic lowering lacks (though that could be changed).
v2: Document the parameters to nir_lower_flrp. Rebase on top of
3766334923e ("compiler/nir: add lowering for 16-bit flrp")
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/compiler/nir/meson.build')
-rw-r--r-- | src/compiler/nir/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/nir/meson.build b/src/compiler/nir/meson.build index 6ea2776d5f3..505a322caa5 100644 --- a/src/compiler/nir/meson.build +++ b/src/compiler/nir/meson.build @@ -125,6 +125,7 @@ files_libnir = files( 'nir_lower_double_ops.c', 'nir_lower_drawpixels.c', 'nir_lower_fb_read.c', + 'nir_lower_flrp.c', 'nir_lower_fragcoord_wtrans.c', 'nir_lower_frexp.c', 'nir_lower_global_vars_to_local.c', |