mesa: replace old MEMCPY macro with memcpy
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user