mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 01:28:07 +02:00
i965/vec4/gen6: fix exec_size for MOV with a width of 4 in generate_gs_ff_sync()
Signed-off-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
b91b9e4b00
commit
22a10dd030
1 changed files with 3 additions and 1 deletions
|
|
@ -705,8 +705,10 @@ generate_gs_ff_sync(struct brw_codegen *p,
|
|||
brw_MOV(p, get_element_ud(header, 0), get_element_ud(dst, 0));
|
||||
|
||||
/* src1 is not an immediate when we use transform feedback */
|
||||
if (src1.file != BRW_IMMEDIATE_VALUE)
|
||||
if (src1.file != BRW_IMMEDIATE_VALUE) {
|
||||
brw_set_default_exec_size(p, BRW_EXECUTE_4);
|
||||
brw_MOV(p, brw_vec4_grf(src1.nr, 0), brw_vec4_grf(dst.nr, 1));
|
||||
}
|
||||
|
||||
brw_pop_insn_state(p);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue