diff options
author | Iago Toral Quiroga <[email protected]> | 2018-04-18 11:02:51 +0200 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2019-03-25 16:08:25 +0100 |
commit | 3766334923e9180c5ed98a97808dda1a2665332d (patch) | |
tree | 661b7447ce6c61082d046d18c6aad9692d46502f /src/compiler/nir/nir.h | |
parent | ca31df6f1fbc2c502644dd7be7424000dc02541c (diff) |
compiler/nir: add lowering for 16-bit flrp
And enable it on Intel.
v2:
- Squash the change to enable it on Intel (Jason)
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index ee766d5238a..92b17275b45 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -2163,6 +2163,7 @@ typedef struct nir_shader_compiler_options { bool lower_fdiv; bool lower_ffma; bool fuse_ffma; + bool lower_flrp16; bool lower_flrp32; /** Lowers flrp when it does not support doubles */ bool lower_flrp64; |