mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-05 10:48:24 +02:00
pan/genxml: correct size of field
The field here is 8 bit wide according to the spec. However, because all values that takes more than two bits are reserved, this doesn't actually lead to any misbehavior. But let's make this consistent with the spec and newer XML files. 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
eea7834ddb
commit
9b936e649b
1 changed files with 1 additions and 1 deletions
|
|
@ -775,7 +775,7 @@
|
|||
<!-- Iter status is written at [Address + 4], 0 == NO_FAULT, 1 == FAULT -->
|
||||
<field name="Offset" size="16" start="0" type="int"/>
|
||||
<field name="Wait mask" size="16" start="16" type="hex"/>
|
||||
<field name="State" size="2" start="32" type="CS State"/>
|
||||
<field name="State" size="8" start="32" type="CS State"/>
|
||||
<field name="Address" size="8" start="40" type="uint"/>
|
||||
<field name="Signal slot" size="4" start="48" type="hex"/>
|
||||
<field name="Opcode" size="8" start="56" type="CS Opcode" default="STORE_STATE"/>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue