mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 09:00:10 +01:00
i965: Fix up writemasked assignments in the new FS.
Not sure how I managed to get tests to succeed without this. +54 piglits.
This commit is contained in:
parent
5e8ed7a79b
commit
11ba8bafdb
1 changed files with 1 additions and 1 deletions
|
|
@ -868,9 +868,9 @@ fs_visitor::visit(ir_assignment *ir)
|
||||||
inst = emit(fs_inst(BRW_OPCODE_MOV, l, r));
|
inst = emit(fs_inst(BRW_OPCODE_MOV, l, r));
|
||||||
if (ir->condition)
|
if (ir->condition)
|
||||||
inst->predicated = true;
|
inst->predicated = true;
|
||||||
|
r.reg_offset++;
|
||||||
}
|
}
|
||||||
l.reg_offset++;
|
l.reg_offset++;
|
||||||
r.reg_offset++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue