mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-06 01:40:26 +01:00
pvr/csbgen: fix packing multiple addresses
Cc: mesa-stable Reviewed-by: Simon Perretta <simon.perretta@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39231>
This commit is contained in:
parent
60c1a0cf86
commit
7be87ca82a
1 changed files with 1 additions and 1 deletions
|
|
@ -949,7 +949,7 @@ class Group:
|
|||
if dw.addresses:
|
||||
if len(dw.fields) > address_count:
|
||||
print(" dw[%d] = %s | %s;" % (index, v_accumulated_addr, v))
|
||||
print(" dw[%d] = (%s >> 32) | (%s >> 32);" % (index + 1, v_accumulated_addr, v))
|
||||
print(" dw[%d] = ((%s) >> 32) | (%s >> 32);" % (index + 1, v_accumulated_addr, v))
|
||||
continue
|
||||
else:
|
||||
v = v_accumulated_addr
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue