diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-09-02 18:05:09 -0600 |
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-09-02 18:05:25 -0600 |
| commit | e3509fd4d09a19293ac3f2e0c92d758bc3ef308c (patch) | |
| tree | 7c5c301b86161b17bffc2240a2f44b2c389b8546 | |
| parent | feea0c9d958bc1645b09b288cd4d4756d0d6e61a (diff) | |
gallium: increase string buffer size to 16000 to avoid truncated output of long shaders
| -rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index a168c94928..58693db13a 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -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; |
