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 <imirkin@alum.mit.edu>
This commit is contained in:
Ilia Mirkin
2014-08-28 21:52:13 -04:00
parent 76e5406e58
commit b4418cd4ce
@@ -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);