diff options
author | Francisco Jerez <[email protected]> | 2015-07-27 18:34:43 +0300 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-07-29 14:15:16 +0300 |
commit | 930ebb258524762c765fa864ef7063bd8bb754a1 (patch) | |
tree | 34f6ed19b3e5ea82daa61d9a88dc3ae9338142a2 /src/mesa/drivers | |
parent | a0b192d3d9fa64f6f8bff5f1e456e40e72f4875e (diff) |
i965/fs: Switch lower_load_payload() to the fs_builder constructor from instruction.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 71d372ce2d5..354c45f6ec0 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3040,7 +3040,8 @@ fs_visitor::lower_load_payload() if (dst.file == MRF) dst.reg = dst.reg & ~BRW_MRF_COMPR4; - const fs_builder hbld = bld.exec_all().group(8, 0).at(block, inst); + const fs_builder ibld(this, block, inst); + const fs_builder hbld = ibld.exec_all().group(8, 0); for (uint8_t i = 0; i < inst->header_size; i++) { if (inst->src[i].file != BAD_FILE) { @@ -3051,10 +3052,6 @@ fs_visitor::lower_load_payload() dst = offset(dst, hbld, 1); } - const fs_builder ibld = bld.exec_all(inst->force_writemask_all) - .group(inst->exec_size, inst->force_sechalf) - .at(block, inst); - if (inst->dst.file == MRF && (inst->dst.reg & BRW_MRF_COMPR4) && inst->exec_size > 8) { /* In this case, the payload portion of the LOAD_PAYLOAD isn't |