Module: Mesa Branch: master Commit: b214e0d2fb736afcc6eb222a29a4d2fad31acacf URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b214e0d2fb736afcc6eb222a29a4d2fad31acacf
Author: Samuel Pitoiset <[email protected]> Date: Wed Jun 15 16:14:39 2016 +0200 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]> --- src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp index 756a4d8..e4aebaa 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)" }; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
