summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2017-02-14 22:20:32 -0800
committerJason Ekstrand <[email protected]>2017-02-16 17:28:03 -0800
commite10f522cd7dd1c1a9abf79ad62b7be8486a6b9b8 (patch)
treec0f8d1982ae21b969cf4356a86c111877331e6ee /src/mesa/drivers/dri/i965
parent161d3e81bef19ddd7870ee88d50479439f28e82b (diff)
nir: Rename lower_double_pack to lower_64bit_pack
There's nothing "double" about it other than, perhaps, the fact that it packs two 32-bit values. Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r--src/mesa/drivers/dri/i965/brw_nir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c
index 0a8d3a838b6..74703490c91 100644
--- a/src/mesa/drivers/dri/i965/brw_nir.c
+++ b/src/mesa/drivers/dri/i965/brw_nir.c
@@ -511,7 +511,7 @@ nir_optimize(nir_shader *nir, const struct brw_compiler *compiler,
nir_lower_dfract |
nir_lower_dround_even |
nir_lower_dmod);
- OPT_V(nir_lower_double_pack);
+ OPT_V(nir_lower_64bit_pack);
} while (progress);
return nir;