diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2014-05-19 23:54:40 -0400 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2014-05-23 09:51:49 -0700 |
commit | 5d056f51abcc7d79158a744582ead6f1ce1276c8 (patch) | |
tree | 31c2231ba35ac65cefcb9492c77ea50ffd3865ba /src | |
parent | 6be7789e116b5cc351da0a8e6f37ab88bcce069a (diff) |
tgsi: add GS_INVOCATIONS to property names array
In commit 4be146b1, I neglected to add the new property to the strings
array. This leads to the string '(null)' to be printed instead when
converting a GS shader to text.
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: "10.2" <mesa-stable@lists.freedesktop.org>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
(cherry picked from commit cdeb7004e03afbd5305913b5ae35d72529623507)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_strings.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_strings.c b/src/gallium/auxiliary/tgsi/tgsi_strings.c index 5b6e47fc87b..34dec4f8a3e 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_strings.c +++ b/src/gallium/auxiliary/tgsi/tgsi_strings.c @@ -120,7 +120,8 @@ const char *tgsi_property_names[TGSI_PROPERTY_COUNT] = "FS_COORD_PIXEL_CENTER", "FS_COLOR0_WRITES_ALL_CBUFS", "FS_DEPTH_LAYOUT", - "VS_PROHIBIT_UCPS" + "VS_PROHIBIT_UCPS", + "GS_INVOCATIONS", }; const char *tgsi_type_names[5] = |