mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
i965/gen6/gs: Replace V-immediate with VF-immediate.
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
43f74ac67c
commit
ad17511302
1 changed files with 5 additions and 5 deletions
|
|
@ -611,11 +611,11 @@ gen6_gs_visitor::xfb_write()
|
|||
emit(CMP(dst_null_d(), sol_temp, this->max_svbi, BRW_CONDITIONAL_LE));
|
||||
emit(IF(BRW_PREDICATE_NORMAL));
|
||||
{
|
||||
src_reg destination_indices_uw =
|
||||
retype(destination_indices, BRW_REGISTER_TYPE_UW);
|
||||
|
||||
vec4_instruction *inst = emit(MOV(dst_reg(destination_indices_uw),
|
||||
brw_imm_v(0x00020100))); /* (0, 1, 2) */
|
||||
vec4_instruction *inst = emit(MOV(dst_reg(destination_indices),
|
||||
brw_imm_vf4(brw_float_to_vf(0.0),
|
||||
brw_float_to_vf(1.0),
|
||||
brw_float_to_vf(2.0),
|
||||
brw_float_to_vf(0.0))));
|
||||
inst->force_writemask_all = true;
|
||||
|
||||
emit(ADD(dst_reg(this->destination_indices),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue