pan/va: Fill in missing src_flat16 enum

Valhall gains(?) the ability to flatshade 16-bit varyings, this is indicated by
a particular source format.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16752>
This commit is contained in:
Alyssa Rosenzweig 2022-05-30 15:28:09 -04:00
parent e898e2466b
commit a9b13a1867
1 changed files with 4 additions and 1 deletions

View File

@ -735,9 +735,12 @@
<enum name="Source format">
<desc>
In-memory format of varyings.
Note: src_flat32 is only valid with 32-bit varying instructions and
src_flat16 is only valid with 16-bit varying instructions.
</desc>
<value desc="Uninterpreted 32-bit values">src_flat32</value>
<reserved/>
<value desc="Uninterpreted 16-bit values">src_flat16</value>
<value desc="Interpolated 32-bit floats">src_f32</value>
<value desc="Interpolated 16-bit floats">src_f16</value>
</enum>