Lines Matching refs:fmtPtr

300 	char*  icPtr       = NULL, *iaPtr      = NULL, *fmtPtr     = NULL;  in TCProcessImKey()  local
326 fmtPtr = strtok( NULL, "," ); in TCProcessImKey()
327 …TCAssertMsg( (fmtPtr != NULL), "ProcessImKey: problem reading output format for image %d in script… in TCProcessImKey()
368 TCStripBlanks( fmtPtr, 1,1 ); in TCProcessImKey()
384 if( (strcmp(fmtPtr, "I4")) == 0 ) in TCProcessImKey()
386 else if( (strcmp(fmtPtr, "I8")) == 0 ) in TCProcessImKey()
388 else if( (strcmp(fmtPtr, "IA4")) == 0 ) in TCProcessImKey()
390 else if( (strcmp(fmtPtr, "IA8")) == 0 ) in TCProcessImKey()
393 else if( (strcmp(fmtPtr, "RGB565")) == 0 ) in TCProcessImKey()
396 else if( (strcmp(fmtPtr, "RGB5A3")) == 0 ) in TCProcessImKey()
398 else if( (strcmp(fmtPtr, "RGBA8")) == 0 ) in TCProcessImKey()
401 else if( (strcmp(fmtPtr, "CI8")) == 0 ) in TCProcessImKey()
410 else if( (strcmp(fmtPtr, "CI4")) == 0 ) in TCProcessImKey()
412 else if( (strcmp(fmtPtr, "CI14_X2")) == 0 ) in TCProcessImKey()
417 else if( (strcmp(fmtPtr, "CMPR")) == 0 ) in TCProcessImKey()
421 …TCErrorMsg( "ProcessImKey: unknown output format '%s' for image %d in script file \n", fmtPtr, ind… in TCProcessImKey()
484 char* psPtr, *fmtPtr; in TCProcessPlKey() local
504 fmtPtr = strtok( NULL, "" ); in TCProcessPlKey()
505 …TCAssertMsg( (fmtPtr != NULL), "ProcessPlKey: problem reading output format for palette %d in scri… in TCProcessPlKey()
510 TCStripBlanks( fmtPtr, 1,1 ); in TCProcessPlKey()
519 if( (strcmp(fmtPtr, "RGB565")) == 0 ) in TCProcessPlKey()
523 else if( (strcmp(fmtPtr, "RGB5A3")) == 0 ) in TCProcessPlKey()
527 else if( (strcmp(fmtPtr, "IA8")) == 0 ) in TCProcessPlKey()
529 …cessPlKey: tc does not support output format '%s'. (palette %d in script file)\n", fmtPtr, index ); in TCProcessPlKey()
533 …TCErrorMsg( "ProcessPlKey: unknown output format '%s' for palette %d in script file\n", fmtPtr, in… in TCProcessPlKey()