From: Francisco Jerez Date: Mon, 27 Jul 2015 15:41:18 +0000 (+0300) Subject: i965/fs: Switch lower_logical_sends() to the fs_builder constructor from instruction. X-Git-Tag: upstream/17.1.0~17302 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=992cda2c8a452ec86386a0f98eaf522afe206695;p=platform%2Fupstream%2Fmesa.git i965/fs: Switch lower_logical_sends() to the fs_builder constructor from instruction. Reviewed-by: Jason Ekstrand --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 354c45f..b4468e8 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -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: