tgsi: set implicit array size for tess stages
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>
Sun, 16 Aug 2015 16:31:56 +0000 (13:31 -0300)
committerIlia Mirkin <imirkin@alum.mit.edu>
Tue, 18 Aug 2015 02:50:16 +0000 (22:50 -0400)
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/gallium/auxiliary/tgsi/tgsi_text.c

index a6675c5168df068fdd7fbc21525ee65497ce6380..0018b1bf62ccec6716a59a9cb66396bf9ea79eab 100644 (file)
@@ -259,7 +259,7 @@ struct translate_ctx
    struct tgsi_token *tokens_end;
    struct tgsi_header *header;
    unsigned processor : 4;
-   int implied_array_size : 5;
+   unsigned implied_array_size : 6;
    unsigned num_immediates;
 };
 
@@ -1623,6 +1623,10 @@ static boolean translate( struct translate_ctx *ctx )
    if (!parse_header( ctx ))
       return FALSE;
 
+   if (ctx->processor == TGSI_PROCESSOR_TESS_CTRL ||
+       ctx->processor == TGSI_PROCESSOR_TESS_EVAL)
+       ctx->implied_array_size = 32;
+
    while (*ctx->cur != '\0') {
       uint label_val = 0;
       if (!eat_white( &ctx->cur )) {