Remove _mesa_memcpy in favor of plain memcpy.

This may break the SUNOS4 build, but it's no longer relevant.
This commit is contained in:
Kenneth Graunke
2010-02-18 23:50:59 -08:00
committed by Kristian Høgsberg
parent 60b0cae412
commit c7ac486261
54 changed files with 159 additions and 178 deletions

View File

@@ -236,7 +236,7 @@ void _tnl_get_attr( GLcontext *ctx, const void *vin,
dest[0] = ctx->Point.Size;
}
else {
_mesa_memcpy( dest, ctx->Current.Attrib[attr], 4*sizeof(GLfloat));
memcpy( dest, ctx->Current.Attrib[attr], 4*sizeof(GLfloat));
}
}