i965/vs: Fix condition code for scalar expression all_equals.
Fixes vs-op-eq-bool-bool.
This commit is contained in:
@@ -985,7 +985,7 @@ vec4_visitor::visit(ir_expression *ir)
|
|||||||
temp.type = op[0].type;
|
temp.type = op[0].type;
|
||||||
|
|
||||||
inst = emit(BRW_OPCODE_CMP, temp, op[0], op[1]);
|
inst = emit(BRW_OPCODE_CMP, temp, op[0], op[1]);
|
||||||
inst->conditional_mod = BRW_CONDITIONAL_NZ;
|
inst->conditional_mod = BRW_CONDITIONAL_Z;
|
||||||
emit(BRW_OPCODE_AND, result_dst, result_src, src_reg(0x1));
|
emit(BRW_OPCODE_AND, result_dst, result_src, src_reg(0x1));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user