diff options
Diffstat (limited to 'src/mesa/program/prog_instruction.c')
-rw-r--r-- | src/mesa/program/prog_instruction.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mesa/program/prog_instruction.c b/src/mesa/program/prog_instruction.c index 28858f6da0d..9f03867f0b0 100644 --- a/src/mesa/program/prog_instruction.c +++ b/src/mesa/program/prog_instruction.c @@ -59,19 +59,6 @@ _mesa_init_instructions(struct prog_instruction *inst, GLuint count) /** - * 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 - calloc(numInst, sizeof(struct prog_instruction)); -} - - -/** * Copy an array of program instructions. * \param dest pointer to destination. * \param src pointer to source. @@ -88,16 +75,6 @@ _mesa_copy_instructions(struct prog_instruction *dest, /** - * Free an array of instructions - */ -void -_mesa_free_instructions(struct prog_instruction *inst, GLuint count) -{ - free(inst); -} - - -/** * Basic info about each instruction */ struct instruction_info |