mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 14:58:32 +02:00
i965/fs: Switch lower_logical_sends() to the fs_builder constructor from instruction.
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
This commit is contained in:
parent
930ebb2585
commit
992cda2c8a
1 changed files with 1 additions and 3 deletions
|
|
@ -3957,9 +3957,7 @@ fs_visitor::lower_logical_sends()
|
|||
bool progress = false;
|
||||
|
||||
foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
|
||||
const fs_builder ibld = bld.exec_all(inst->force_writemask_all)
|
||||
.group(inst->exec_size, inst->force_sechalf)
|
||||
.at(block, inst);
|
||||
const fs_builder ibld(this, block, inst);
|
||||
|
||||
switch (inst->opcode) {
|
||||
case FS_OPCODE_FB_WRITE_LOGICAL:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue