gallium/tgsi: add support for 64-bit integer immediates.
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_parse.c
index 16564ddf3015f2e4d148ed6752d72a16f725cf16..940af7d302c248eb84944dda2414ef60580ce435 100644 (file)
@@ -155,12 +155,14 @@ tgsi_parse_token(
          break;
 
       case TGSI_IMM_UINT32:
+      case TGSI_IMM_UINT64:
          for (i = 0; i < imm_count; i++) {
             next_token(ctx, &imm->u[i].Uint);
          }
          break;
 
       case TGSI_IMM_INT32:
+      case TGSI_IMM_INT64:
          for (i = 0; i < imm_count; i++) {
             next_token(ctx, &imm->u[i].Int);
          }