Use _mesa_copy_instructions rather than memcpy in _mesa_insert_mvp_code.
authorOliver McFadden <z3ro.geek@gmail.com>
Sun, 18 Mar 2007 07:21:21 +0000 (07:21 +0000)
committerOliver McFadden <z3ro.geek@gmail.com>
Sun, 18 Mar 2007 07:35:45 +0000 (07:35 +0000)
src/mesa/shader/programopt.c

index dca44c8..fed8e5b 100644 (file)
@@ -100,8 +100,7 @@ _mesa_insert_mvp_code(GLcontext *ctx, struct gl_vertex_program *vprog)
    }
 
    /* Append original instructions after new instructions */
-   _mesa_memcpy(newInst + 4, vprog->Base.Instructions,
-                origLen * sizeof(struct prog_instruction));
+   _mesa_copy_instructions (newInst + 4, vprog->Base.Instructions, origLen);
 
    /* free old instructions */
    _mesa_free(vprog->Base.Instructions);