mesa: replace old MEMCPY macro with memcpy

This commit is contained in:
Brian Paul
2010-02-19 08:09:01 -07:00
parent 2efa86ea30
commit e197de56cd
22 changed files with 104 additions and 106 deletions

View File

@@ -47,7 +47,7 @@ void _tnl_install_pipeline( GLcontext *ctx,
*/
for (i = 0 ; i < MAX_PIPELINE_STAGES && stages[i] ; i++) {
struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
MEMCPY(s, stages[i], sizeof(*s));
memcpy(s, stages[i], sizeof(*s));
if (s->create)
s->create(ctx, s);
}