gallium: increase string buffer size to 16000 to avoid truncated output of long shaders
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 3 Sep 2008 00:05:09 +0000 (18:05 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 3 Sep 2008 00:05:25 +0000 (18:05 -0600)
src/gallium/auxiliary/tgsi/tgsi_dump.c

index a168c94..58693db 100644 (file)
@@ -517,7 +517,7 @@ tgsi_dump(
    const struct tgsi_token *tokens,
    uint flags )
 {
-   static char str[4096];
+   static char str[16000];
    uint len;
    char *p = str;