i965: Fix nested loops in the VS.
[mesa.git] / src / mesa / swrast / s_blend.c
index 95c83432a9c6cf9dbb85621c160b68ca6f816b64..5b090c72c79c190159e85a811aff91469c00fe09 100644 (file)
@@ -89,7 +89,7 @@ blend_noop(GLcontext *ctx, GLuint n, const GLubyte mask[],
    else
       bytes = 4 * n * sizeof(GLfloat);
 
-   _mesa_memcpy(src, dst, bytes);
+   memcpy(src, dst, bytes);
 }