mesa: added _mesa_free_instructions()
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 14 May 2008 18:37:07 +0000 (12:37 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 14 May 2008 18:37:07 +0000 (12:37 -0600)
cherry-picked from gallium-0.1

src/mesa/shader/prog_instruction.c
src/mesa/shader/prog_instruction.h

index d6b5652..329fec3 100644 (file)
@@ -119,6 +119,23 @@ _mesa_copy_instructions(struct prog_instruction *dest,
 
 
 /**
+ * Free an array of instructions
+ */
+void
+_mesa_free_instructions(struct prog_instruction *inst, GLuint count)
+{
+   GLuint i;
+   for (i = 0; i < count; i++) {
+      if (inst[i].Data)
+         _mesa_free(inst[i].Data);
+      if (inst[i].Comment)
+         _mesa_free((char *) inst[i].Comment);
+   }
+   _mesa_free(inst);
+}
+
+
+/**
  * Basic info about each instruction
  */
 struct instruction_info
index c800757..ce4daec 100644 (file)
@@ -437,6 +437,9 @@ extern struct prog_instruction *
 _mesa_copy_instructions(struct prog_instruction *dest,
                         const struct prog_instruction *src, GLuint n);
 
+extern void
+_mesa_free_instructions(struct prog_instruction *inst, GLuint count);
+
 extern GLuint
 _mesa_num_inst_src_regs(gl_inst_opcode opcode);