intel/brw: Rename fs_builder to brw_builder

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33076>
This commit is contained in:
Caio Oliveira
2024-12-29 15:41:04 -08:00
committed by Marge Bot
parent f2d4c9db92
commit 5ac82efd35
34 changed files with 391 additions and 391 deletions
+4 -4
View File
@@ -152,9 +152,9 @@ brw_opt_combine_convergent_txf(fs_visitor &s)
for (unsigned curr = 0; curr < count; curr += max_simd) {
const unsigned lanes = CLAMP(count - curr, min_simd, max_simd);
const unsigned width = util_next_power_of_two(lanes);
const fs_builder ubld =
fs_builder(&s).at(block, txfs[curr]).exec_all().group(width, 0);
const fs_builder ubld1 = ubld.group(1, 0);
const brw_builder ubld =
brw_builder(&s).at(block, txfs[curr]).exec_all().group(width, 0);
const brw_builder ubld1 = ubld.group(1, 0);
enum brw_reg_type coord_type =
txfs[curr]->src[TEX_LOGICAL_SRC_COORDINATE].type;
@@ -211,7 +211,7 @@ brw_opt_combine_convergent_txf(fs_visitor &s)
if (!txf)
break;
const fs_builder ibld = fs_builder(&s, block, txf);
const brw_builder ibld = brw_builder(&s, block, txf);
/* Replace each of the original TXFs with MOVs from our new one */
const unsigned dest_comps = dest_comps_for_txf(s, txf);