mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 04:40:11 +01:00
i965: Set the render target index in gen6 fixed-function/ARB_fp path.
Fixes: fbo-drawbuffers2-blend fbo-drawbuffers2-colormask
This commit is contained in:
parent
4b4dc778b6
commit
39eaacff14
1 changed files with 7 additions and 0 deletions
|
|
@ -1529,6 +1529,13 @@ void emit_fb_write(struct brw_wm_compile *c,
|
|||
brw_set_mask_control(p, BRW_MASK_DISABLE);
|
||||
brw_MOV(p, brw_message_reg(0), brw_vec8_grf(0, 0));
|
||||
brw_pop_insn_state(p);
|
||||
|
||||
if (target != 0) {
|
||||
brw_MOV(p, retype(brw_vec1_reg(BRW_MESSAGE_REGISTER_FILE,
|
||||
0,
|
||||
2), BRW_REGISTER_TYPE_UD),
|
||||
brw_imm_ud(target));
|
||||
}
|
||||
}
|
||||
|
||||
if (!c->runtime_check_aads_emit) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue