From: Marcos Paulo de Souza Date: Sun, 16 Aug 2015 16:31:58 +0000 (-0300) Subject: nouveau: recognize tess stages in nouveau_compiler X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df97126731a745c1797c783414a44652be039d84;p=mesa.git nouveau: recognize tess stages in nouveau_compiler Reviewed-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/nouveau_compiler.c b/src/gallium/drivers/nouveau/nouveau_compiler.c index 86604984220..495450b317a 100644 --- a/src/gallium/drivers/nouveau/nouveau_compiler.c +++ b/src/gallium/drivers/nouveau/nouveau_compiler.c @@ -190,6 +190,10 @@ main(int argc, char *argv[]) type = PIPE_SHADER_GEOMETRY; else if (!strncmp(text, "COMP", 4)) type = PIPE_SHADER_COMPUTE; + else if (!strncmp(text, "TESS_CTRL", 9)) + type = PIPE_SHADER_TESS_CTRL; + else if (!strncmp(text, "TESS_EVAL", 9)) + type = PIPE_SHADER_TESS_EVAL; else { _debug_printf("Unrecognized TGSI header\n"); return 1;