• Home
  • Raw
  • Download

Lines Matching refs:pszRemaining

1311 			char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS);  in ParseGenericSurface()  local
1312 if(!pszRemaining) in ParseGenericSurface()
1326 if(!ParseTextureFlags(pszRemaining, pFlags, 3, c_ppszFilters, eFilter_Size, pReturnError, i)) in ParseGenericSurface()
1337 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() local
1338 if(!pszRemaining) in ParseGenericSurface()
1352 if(!ParseTextureFlags(pszRemaining, pFlags, 3, c_ppszWraps, eWrap_Size, pReturnError, i)) in ParseGenericSurface()
1363 char* pszRemaining; in ParseGenericSurface() local
1370 pszRemaining = strtok(NULL, DELIM_TOKENS NEWLINE_TOKENS); in ParseGenericSurface()
1371 if(!pszRemaining) in ParseGenericSurface()
1378 int val = atoi(pszRemaining); in ParseGenericSurface()
1380 …if( (val == 0 && *pszRemaining != '0') // Make sure they haven't explicitly set the value to be … in ParseGenericSurface()
1383 …edStr("Invalid RESOLUTION argument \"%s\" in [TEXTURE] on line %d\n", pszRemaining, m_psContext->p… in ParseGenericSurface()
1396 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() local
1397 if(!pszRemaining) in ParseGenericSurface()
1404 CPVRTHash hashType(pszRemaining); in ParseGenericSurface()
1420 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() local
1421 if(!pszRemaining) in ParseGenericSurface()
1431 if(strcmp(pszRemaining, ppFilters[uiIndex]) == 0) in ParseGenericSurface()
1441 …ringFromFormattedStr("Unknown keyword '%s' in [%s] on line %d: %s\n", pszRemaining, pCaller, m_psC… in ParseGenericSurface()
1459 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS); in ParseGenericSurface() local
1460 if(pszRemaining) in ParseGenericSurface()
1462 …gFromFormattedStr("Unexpected keyword '%s' in [%s] on line %d: %s\n", pszRemaining, pCaller, m_psC… in ParseGenericSurface()
1536 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseTexture() local
1537 if(!pszRemaining) in ParseTexture()
1543 texName = pszRemaining; in ParseTexture()
1548 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS); in ParseTexture() local
1549 if(!pszRemaining) in ParseTexture()
1555 if(!ReadStringToken(pszRemaining, filePath, *pReturnError, i, "TEXTURE")) in ParseTexture()
1563 … char* pszRemaining = strtok(NULL, NEWLINE_TOKENS); // String component. Get the rest of the line. in ParseTexture() local
1564 if(!pszRemaining || strlen(pszRemaining) == 0) in ParseTexture()
1570 if(!ReadStringToken(pszRemaining, viewName, *pReturnError, i, "TEXTURE")) in ParseTexture()
1595 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS); in ParseTexture() local
1596 if(pszRemaining) in ParseTexture()
1598 …FormattedStr("Unexpected keyword '%s' in [TEXTURE] on line %d: %s\n", pszRemaining, m_psContext->p… in ParseTexture()
1722 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseTarget() local
1723 if(!pszRemaining) in ParseTarget()
1729 targetName = pszRemaining; in ParseTarget()
1751 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS); in ParseTarget() local
1752 if(pszRemaining) in ParseTarget()
1754 …gFromFormattedStr("Unexpected keyword '%s' in [TARGET] on line %d\n", pszRemaining, m_psContext->p… in ParseTarget()
1797 char *pszRemaining(NULL), *pszTemp(NULL); in ParseTextures() local
1822 pszRemaining = NULL; in ParseTextures()
1861 pszRemaining = strtok(NULL, "\n"); in ParseTextures()
1863 if(pszRemaining == NULL) in ParseTextures()
1870 pszTemp = (char *)malloc( ((int)strlen(pszRemaining)+1) * sizeof(char)); in ParseTextures()
1871 strcpy(pszTemp, pszRemaining); in ParseTextures()
1897 if(!ParseTextureFlags(pszRemaining, pFlags, 3, c_ppszFilters, eFilter_Size, pReturnError, i)) in ParseTextures()
1910 if(!ParseTextureFlags(pszRemaining, pFlags, 3, c_ppszWraps, eWrap_Size, pReturnError, i)) in ParseTextures()