mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-04 13:08:15 +02:00
pan/genxml: correct size of field
This field is specified to be 4 bit wide, not 3. This doesn't make a practical difference, because all values with the top bit set are undefined, so it will always be zero. But we should get it right to reduce needless diffs here. Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41721>
This commit is contained in:
parent
34e35cc0de
commit
eea7834ddb
1 changed files with 1 additions and 1 deletions
|
|
@ -687,7 +687,7 @@
|
|||
|
||||
<struct name="CS BRANCH" size="2">
|
||||
<field name="Offset" size="16" start="0" type="int"/>
|
||||
<field name="Condition" size="3" start="28" type="CS Condition"/>
|
||||
<field name="Condition" size="4" start="28" type="CS Condition"/>
|
||||
<field name="Value" size="8" start="40" type="uint"/>
|
||||
<field name="Opcode" size="8" start="56" type="CS Opcode" default="BRANCH"/>
|
||||
</struct>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue