mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
brw: normalize formatting
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
74ecbb6fcc
commit
b1762023f7
1 changed files with 5 additions and 13 deletions
|
|
@ -2639,21 +2639,13 @@ brw_postprocess_nir_opts(nir_shader *nir, const struct brw_compiler *compiler,
|
|||
OPT(brw_nir_lower_fsign);
|
||||
OPT(brw_nir_opt_fsat);
|
||||
|
||||
do {
|
||||
progress = false;
|
||||
|
||||
OPT(nir_opt_algebraic_late);
|
||||
|
||||
if (progress) {
|
||||
OPT(nir_opt_copy_prop);
|
||||
OPT(nir_opt_dce);
|
||||
OPT(nir_opt_cse);
|
||||
}
|
||||
} while (progress);
|
||||
|
||||
while (OPT(nir_opt_algebraic_late)) {
|
||||
OPT(nir_opt_copy_prop);
|
||||
OPT(nir_opt_dce);
|
||||
OPT(nir_opt_cse);
|
||||
}
|
||||
|
||||
OPT(nir_lower_fp16_casts, nir_lower_fp16_split_fp64);
|
||||
|
||||
OPT(nir_lower_alu_to_scalar, NULL, NULL);
|
||||
|
||||
while (OPT(nir_opt_algebraic_distribute_src_mods)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue