Lines Matching refs:check
411 u32 check; in TCCheckMipMapConvParams() local
415 check = CheckRangeLOD( thisImage->minLOD ); in TCCheckMipMapConvParams()
416 …TCAssertMsg( (check),"TCCheckMipMapConvParams: minLOD out of range for image %d\n", thisImage->ind… in TCCheckMipMapConvParams()
418 check = CheckRangeLOD( thisImage->maxLOD ); in TCCheckMipMapConvParams()
419 …TCAssertMsg( (check),"TCCheckMipMapConvParams: maxLOD out of range for image %d\n", thisImage->ind… in TCCheckMipMapConvParams()
421 check = CheckRangeLOD( thisImage->remapMinLOD ); in TCCheckMipMapConvParams()
422 …TCAssertMsg( (check),"TCCheckMipMapConvParams: remapLOD out of range for image %d\n", thisImage->i… in TCCheckMipMapConvParams()
431 check = thisImage->remapMinLOD + (thisImage->maxLOD - thisImage->minLOD); in TCCheckMipMapConvParams()
432 if( check > 10 ) in TCCheckMipMapConvParams()
438 check = TCCheckPower2( thisImage ); in TCCheckMipMapConvParams()
439 …TCAssertMsg( (check),"TCCheckMipMapConvParams: image %d is not power of 2 dimensions\n", thisImage… in TCCheckMipMapConvParams()
442 check = TCCheckMipMapReduction( thisImage ); in TCCheckMipMapConvParams()
443 …TCAssertMsg( (check),"TCCheckMipMapConvParams: numLOD is greater than image %d minimum dimension\n… in TCCheckMipMapConvParams()
446 check = TCCheckMipMapFormats( thisImage ); in TCCheckMipMapConvParams()
447 …TCAssertMsg( (check),"TCCheckMipMapConvParams: image %d invalid output format for mipmapping\n", t… in TCCheckMipMapConvParams()