Module: Mesa Branch: master Commit: 1b42cd52a253f9f51ae2655e59f54ff3d35342e8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1b42cd52a253f9f51ae2655e59f54ff3d35342e8
Author: Rafael Antognolli <[email protected]> Date: Tue Jun 6 09:23:28 2017 -0700 genxml: Rename SF_STATE field to match gen6+. Rename "Use Point Width State" to "Point Width Source". It accepts the same values and has the same meaning as gen6+, so lets keep them with the same name to simplify the code. Signed-off-by: Rafael Antognolli <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> --- src/intel/genxml/gen4.xml | 6 +++--- src/intel/genxml/gen45.xml | 6 +++--- src/intel/genxml/gen5.xml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/intel/genxml/gen4.xml b/src/intel/genxml/gen4.xml index 72be95bee2..d37c85affd 100644 --- a/src/intel/genxml/gen4.xml +++ b/src/intel/genxml/gen4.xml @@ -686,9 +686,9 @@ <value name="8 Sub-Pixel Precision Bits" value="0"/> <value name="4 Sub-Pixel Precision Bits" value="1"/> </field> - <field name="Use Point Width State" start="235" end="235" type="uint"> - <value name="Use Point Width on Vertex" value="0"/> - <value name="Use Point Width from State" value="1"/> + <field name="Point Width Source" start="235" end="235" type="uint"> + <value name="Vertex" value="0"/> + <value name="State" value="1"/> </field> <field name="Point Width" start="224" end="234" type="u8.3"/> </struct> diff --git a/src/intel/genxml/gen45.xml b/src/intel/genxml/gen45.xml index ff7d72f060..730231a290 100644 --- a/src/intel/genxml/gen45.xml +++ b/src/intel/genxml/gen45.xml @@ -700,9 +700,9 @@ <value name="8 Sub-Pixel Precision Bits" value="0"/> <value name="4 Sub-Pixel Precision Bits" value="1"/> </field> - <field name="Use Point Width State" start="235" end="235" type="uint"> - <value name="Use Point Width on Vertex" value="0"/> - <value name="Use Point Width from State" value="1"/> + <field name="Point Width Source" start="235" end="235" type="uint"> + <value name="Vertex" value="0"/> + <value name="State" value="1"/> </field> <field name="Point Width" start="224" end="234" type="u8.3"/> </struct> diff --git a/src/intel/genxml/gen5.xml b/src/intel/genxml/gen5.xml index bd2e417855..fdaa5795dc 100644 --- a/src/intel/genxml/gen5.xml +++ b/src/intel/genxml/gen5.xml @@ -791,9 +791,9 @@ <value name="8 Sub-Pixel Precision Bits" value="0"/> <value name="4 Sub-Pixel Precision Bits" value="1"/> </field> - <field name="Use Point Width State" start="235" end="235" type="uint"> - <value name="Use Point Width on Vertex" value="0"/> - <value name="Use Point Width from State" value="1"/> + <field name="Point Width Source" start="235" end="235" type="uint"> + <value name="Vertex" value="0"/> + <value name="State" value="1"/> </field> <field name="Point Width" start="224" end="234" type="u8.3"/> </struct> _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
