tgsi: added tgsi_alloc_tokens()
authorBrian Paul <brianp@vmware.com>
Wed, 3 Feb 2010 04:23:23 +0000 (21:23 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 3 Feb 2010 04:23:23 +0000 (21:23 -0700)
src/gallium/auxiliary/tgsi/tgsi_parse.c
src/gallium/auxiliary/tgsi/tgsi_parse.h

index fd37fc3079bd875440fe9ee476ef793670f7eb28..7e19e1fe36fa567c9000d8fd425e311a6a805b20 100644 (file)
@@ -284,3 +284,14 @@ tgsi_dup_tokens(const struct tgsi_token *tokens)
       memcpy(new_tokens, tokens, bytes);
    return new_tokens;
 }
+
+
+/**
+ * Allocate memory for num_tokens tokens.
+ */
+struct tgsi_token *
+tgsi_alloc_tokens(unsigned num_tokens)
+{
+   unsigned bytes = num_tokens * sizeof(struct tgsi_token);
+   return (struct tgsi_token *) MALLOC(bytes);
+}
index 8150e3cd29d16e62d284c0edacb1e70114ebfc80..b45ccee2f632557a45737f8f1390dfb1d700e56b 100644 (file)
@@ -130,6 +130,10 @@ tgsi_num_tokens(const struct tgsi_token *tokens);
 struct tgsi_token *
 tgsi_dup_tokens(const struct tgsi_token *tokens);
 
+struct tgsi_token *
+tgsi_alloc_tokens(unsigned num_tokens);
+
+
 #if defined __cplusplus
 }
 #endif