Remove _mesa_memset in favor of plain memset.

This may break the SUNOS4 build, but it's no longer relevant.
This commit is contained in:
Kenneth Graunke
2010-02-18 23:51:00 -08:00
committed by Kristian Høgsberg
parent c7ac486261
commit 26f8fad145
23 changed files with 26 additions and 46 deletions

View File

@@ -548,7 +548,7 @@ put_mono_row_ubyte3(GLcontext *ctx, struct gl_renderbuffer *rb, GLuint count,
ASSERT(rb->DataType == GL_UNSIGNED_BYTE);
if (!mask && val0 == val1 && val1 == val2) {
/* optimized case */
_mesa_memset(dst, val0, 3 * count);
memset(dst, val0, 3 * count);
}
else {
GLuint i;
@@ -1319,7 +1319,7 @@ put_mono_row_alpha8(GLcontext *ctx, struct gl_renderbuffer *arb, GLuint count,
}
}
else {
_mesa_memset(dst, val, count);
memset(dst, val, count);
}
}