Replace the _mesa_*printf() wrappers with the plain libc versions

This commit is contained in:
Kristian Høgsberg
2010-02-19 12:32:24 -05:00
parent 32f2fd1c5d
commit 298be2b028
99 changed files with 951 additions and 1032 deletions

View File

@@ -295,11 +295,11 @@ compute_max_element(struct gl_client_array *array)
- (GLsizeiptrARB) array->Ptr + array->StrideB
- array->_ElementSize) / array->StrideB;
if (0)
_mesa_printf("%s Object %u Size %u MaxElement %u\n",
__FUNCTION__,
array->BufferObj->Name,
(GLuint) array->BufferObj->Size,
array->_MaxElement);
printf("%s Object %u Size %u MaxElement %u\n",
__FUNCTION__,
array->BufferObj->Name,
(GLuint) array->BufferObj->Size,
array->_MaxElement);
}
else {
/* user-space array, no idea how big it is */