From: Ilia Mirkin Date: Fri, 29 Aug 2014 01:52:13 +0000 (-0400) Subject: nouveau: allow more tokens by default to avoid parse failures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4418cd4ce17cb6068fcb2c7dab874f4c4d880e1;p=mesa.git nouveau: allow more tokens by default to avoid parse failures Also print a note saying that parsing failed to help isolate issues. Signed-off-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/nouveau_compiler.c b/src/gallium/drivers/nouveau/nouveau_compiler.c index ac22035ca82..86604984220 100644 --- a/src/gallium/drivers/nouveau/nouveau_compiler.c +++ b/src/gallium/drivers/nouveau/nouveau_compiler.c @@ -139,7 +139,7 @@ nouveau_codegen(int chipset, int type, struct tgsi_token tokens[], int main(int argc, char *argv[]) { - struct tgsi_token tokens[1024]; + struct tgsi_token tokens[4096]; int i, chipset = 0, type = -1; const char *filename = NULL; FILE *f; @@ -195,8 +195,10 @@ main(int argc, char *argv[]) return 1; } - if (!tgsi_text_translate(text, tokens, Elements(tokens))) + if (!tgsi_text_translate(text, tokens, Elements(tokens))) { + _debug_printf("Failed to parse TGSI shader\n"); return 1; + } if (chipset >= 0x50) { i = nouveau_codegen(chipset, type, tokens, &size, &code);