diff options
author | Samuel Iglesias Gonsálvez <[email protected]> | 2016-04-28 07:13:10 +0200 |
---|---|---|
committer | Samuel Iglesias Gonsálvez <[email protected]> | 2016-04-28 12:01:40 +0200 |
commit | 443600d51e34576a7ee0060948e3d6f56b41b51d (patch) | |
tree | 7ca3b155235f4acef3e9ea0f3ccf77b6649c63fe /src/compiler/nir/nir.h | |
parent | 072613b3f366d884f398166673d4fd24c166225d (diff) |
nir: rename lower_flrp to lower_flrp32
A later patch will add lower_flrp64 option to NIR.
Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 317d71636f4..d5eda02177a 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -1624,7 +1624,7 @@ typedef struct nir_function { typedef struct nir_shader_compiler_options { bool lower_fdiv; bool lower_ffma; - bool lower_flrp; + bool lower_flrp32; bool lower_fpow; bool lower_fsat; bool lower_fsqrt; |