From: Oliver McFadden Date: Sun, 18 Mar 2007 07:21:21 +0000 (+0000) Subject: Use _mesa_copy_instructions rather than memcpy in _mesa_insert_mvp_code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cfe984dbd0c478906785dbf8a9430504173ae952;p=mesa.git Use _mesa_copy_instructions rather than memcpy in _mesa_insert_mvp_code. --- diff --git a/src/mesa/shader/programopt.c b/src/mesa/shader/programopt.c index dca44c853d8..fed8e5b758b 100644 --- a/src/mesa/shader/programopt.c +++ b/src/mesa/shader/programopt.c @@ -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);