summaryrefslogtreecommitdiff
path: root/src/mesa/shader/programopt.c
diff options
context:
space:
mode:
authorNian Wu <nian.wu@intel.com>2007-03-18 17:00:18 +0800
committerNian Wu <nian.wu@intel.com>2007-03-18 17:00:18 +0800
commitfd1b1fce3faaf40af201a5b06a84df62c855fb12 (patch)
tree8060b408effd15e9171fc69b13c36a4d47dee01e /src/mesa/shader/programopt.c
parent38889f5221821acf08365d3f332680707d4b9b5f (diff)
parentcfe984dbd0c478906785dbf8a9430504173ae952 (diff)
Merge git://proxy01.pd.intel.com:9419/git/mesa/mesa into crestline
Diffstat (limited to 'src/mesa/shader/programopt.c')
-rw-r--r--src/mesa/shader/programopt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/shader/programopt.c b/src/mesa/shader/programopt.c
index dca44c853d..fed8e5b758 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);