diff options
author | Francisco Jerez <[email protected]> | 2015-06-03 21:08:43 +0300 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-06-09 15:18:34 +0300 |
commit | d5cb2e513794f6c26259665bc93cf507e86ae3b8 (patch) | |
tree | b43f65300edc5048e70fb9c4611938d2682ac17c /src/mesa | |
parent | e522f12f03bcb0edb1384adff894918bf8d6d1b6 (diff) |
i965/fs: Migrate CS terminate message to the IR builder.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 63747a1bc0d..afd7a5ee4dd 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -2018,11 +2018,10 @@ fs_visitor::emit_cs_terminate() */ struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD); fs_reg payload = fs_reg(GRF, alloc.allocate(1), BRW_REGISTER_TYPE_UD); - fs_inst *inst = emit(MOV(payload, g0)); - inst->force_writemask_all = true; + bld.exec_all().MOV(payload, g0); /* Send a message to the thread spawner to terminate the thread. */ - inst = emit(CS_OPCODE_CS_TERMINATE, reg_undef, payload); + fs_inst *inst = bld.emit(CS_OPCODE_CS_TERMINATE, reg_undef, payload); inst->eot = true; } |