mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-18 12:58:22 +02:00
i965/fs: Migrate CS terminate message to the IR builder.
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
e522f12f03
commit
d5cb2e5137
1 changed files with 2 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue