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/mesa | |
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/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_compiler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_compiler.c b/src/mesa/drivers/dri/i965/brw_compiler.c index 4496699e397..c8a38e3145c 100644 --- a/src/mesa/drivers/dri/i965/brw_compiler.c +++ b/src/mesa/drivers/dri/i965/brw_compiler.c @@ -109,7 +109,7 @@ static const struct nir_shader_compiler_options vector_nir_options = { .fdot_replicates = true, /* Prior to Gen6, there are no three source operations for SIMD4x2. */ - .lower_flrp = true, + .lower_flrp32 = true, .lower_pack_snorm_2x16 = true, .lower_pack_unorm_2x16 = true, |