diff options
author | Samuel Pitoiset <[email protected]> | 2016-06-15 16:14:39 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2016-06-18 18:34:50 +0200 |
commit | b214e0d2fb736afcc6eb222a29a4d2fad31acacf (patch) | |
tree | c7ca583327804247fabfbb04edd8abcac162620d /src | |
parent | 6b0ac95c2862b4d464079b2edd9b59b5ef906da3 (diff) |
nv50/ir: add missing strings for some recent sysvals
This is pretty useful for debugging purposes and those should
not be omitted.
Fixes: 517a93b3 ("nvc0: add ARB_shader_draw_parameters support")
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp index 756a4d8ac88..e4aebaa500b 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp @@ -289,6 +289,9 @@ static const char *SemanticStr[SV_LAST + 1] = "VERTEX_STRIDE", "INVOCATION_INFO", "THREAD_KILL", + "BASEVERTEX", + "BASEINSTANCE", + "DRAWID", "?", "(INVALID)" }; |