mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 22:10:11 +01:00
r600/sfn: Fix RING instruction assembly emission
Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Reviewed-by: Reviewed-by: Dave Airlie <airlied@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5085>
This commit is contained in:
parent
e475eae0fe
commit
b6eb19dd63
1 changed files with 2 additions and 2 deletions
|
|
@ -619,8 +619,8 @@ bool AssemblyFromShaderLegacyImpl::emit_memringwrite(const MemRingOutIntruction&
|
|||
|
||||
output.gpr = instr.gpr().sel();
|
||||
output.type = instr.type();
|
||||
output.elem_size = instr.ncomp();
|
||||
output.comp_mask = 0xF;
|
||||
output.elem_size = 3;
|
||||
output.comp_mask = 0xf;
|
||||
output.burst_count = 1;
|
||||
output.op = instr.op();
|
||||
if (instr.type() == mem_write_ind || instr.type() == mem_write_ind_ack) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue