intel/compiler/icl: Clear "null render target" bit in extended message descriptor

Otherwise all our render target writes go no where.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Jason Ekstrand
2017-12-18 11:29:14 -08:00
committed by Matt Turner
parent 1484876ef7
commit d2eecf0b0b
2 changed files with 6 additions and 0 deletions

View File

@@ -536,6 +536,9 @@ brw_set_dp_write_message(struct brw_codegen *p,
if (devinfo->gen < 7) {
brw_inst_set_dp_write_commit(devinfo, insn, send_commit_msg);
}
if (devinfo->gen >= 11)
brw_inst_set_null_rt(devinfo, insn, false);
}
void

View File

@@ -505,6 +505,9 @@ FF(sfid,
/* 6: */ 27, 24,
/* 7: */ 27, 24,
/* 8: */ 27, 24)
FF(null_rt,
/* 4-7: */ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
/* 8: */ 80, 80) /* actually only Gen11+ */
FC(base_mrf, 27, 24, devinfo->gen < 6);
/** @} */