r600 : Clean up a bit test code mess.

This commit is contained in:
Richard Li 2009-11-19 17:41:10 -05:00
parent 48dfd3938e
commit b09e74901a

View file

@ -369,23 +369,6 @@ GLboolean r600CreateContext(const __GLcontextModes * glVisual,
assert(glVisual);
assert(driContextPriv);
assert(screen);
//richard test
FILE *pFile = NULL;
unsigned long ulByteToWrite = 0;
char szStr[1024];
pFile = fopen("//home//richard//rtp-log//func_call.log", "a+");
if(NULL != pFile)
{
sprintf(szStr, "r600CreateContext \r\n");
ulByteToWrite = strlen(szStr);
fwrite(szStr, 1, ulByteToWrite, pFile);
fclose(pFile);
pFile = NULL;
}
//-------------
/* Allocate the R600 context */
r600 = (context_t*) CALLOC(sizeof(*r600));