From 9983a27cbe4f123f4e7fcce59c0d8b61b0f73924 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 25 Aug 2006 15:13:25 +0000 Subject: added _mesa_alloc_instructions() utility function --- src/mesa/shader/program.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/mesa/shader/program.c') diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index f6877bd142..b1d06bbb27 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -1312,6 +1312,19 @@ _mesa_init_instruction(struct prog_instruction *inst) } +/** + * Allocate an array of program instructions. + * \param numInst number of instructions + * \return pointer to instruction memory + */ +struct prog_instruction * +_mesa_alloc_instructions(GLuint numInst) +{ + return (struct prog_instruction *) + _mesa_calloc(numInst * sizeof(struct prog_instruction)); +} + + /** * Reallocate memory storing an array of program instructions. * This is used when we need to append additional instructions onto an -- cgit v1.2.3