gallium: increase string buffer size to 16000 to avoid truncated output of long shaders

This commit is contained in:
Brian Paul
2008-09-02 18:05:09 -06:00
parent feea0c9d95
commit e3509fd4d0

View 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;