Lines Matching refs:textureHeader

436         (GXBool)(( tdp->textureHeader->minLOD == tdp->textureHeader->maxLOD ) ?  in GetTplTexture()
439 fmt = (u32)tdp->textureHeader->format; in GetTplTexture()
440 to->width = tdp->textureHeader->width; in GetTplTexture()
441 to->height = tdp->textureHeader->height; in GetTplTexture()
449 tdp->textureHeader->data, in GetTplTexture()
450 tdp->textureHeader->width, in GetTplTexture()
451 tdp->textureHeader->height, in GetTplTexture()
453 tdp->textureHeader->wrapS, // s in GetTplTexture()
454 tdp->textureHeader->wrapT, // t in GetTplTexture()
470 tdp->textureHeader->data, in GetTplTexture()
471 tdp->textureHeader->width, in GetTplTexture()
472 tdp->textureHeader->height, in GetTplTexture()
474 tdp->textureHeader->wrapS, // s in GetTplTexture()
475 tdp->textureHeader->wrapT, // t in GetTplTexture()
481 tdp->textureHeader->minFilter, in GetTplTexture()
482 tdp->textureHeader->magFilter, in GetTplTexture()
483 tdp->textureHeader->minLOD, in GetTplTexture()
484 tdp->textureHeader->maxLOD, in GetTplTexture()
485 tdp->textureHeader->LODBias, in GetTplTexture()
487 tdp->textureHeader->edgeLODEnable, in GetTplTexture()
491 OSReport("Width = %04d\t\t", tdp->textureHeader->width); in GetTplTexture()
492 OSReport("Height = %04d\n", tdp->textureHeader->height); in GetTplTexture()
493 OSReport("Format = %s ", TxFmtStr[tdp->textureHeader->format]); in GetTplTexture()
494 OSReport("(%d)\n", tdp->textureHeader->format); in GetTplTexture()
495 OSReport("Wrap_s = %s\t\t", TxWrapStr[tdp->textureHeader->wrapS]); in GetTplTexture()
496 OSReport("Wrap_t = %s\n", TxWrapStr[tdp->textureHeader->wrapT]); in GetTplTexture()
497 OSReport("MinFilter = %s\t", TxFilterStr[tdp->textureHeader->minFilter]); in GetTplTexture()
498 OSReport("MagFilter = %s\n", TxFilterStr[tdp->textureHeader->magFilter]); in GetTplTexture()
499 OSReport("MinLOD = %d\t\t\t", tdp->textureHeader->minLOD); in GetTplTexture()
500 OSReport("MaxLOD = %d\n", tdp->textureHeader->maxLOD); in GetTplTexture()
501 OSReport("LODBias = %f\n", tdp->textureHeader->LODBias); in GetTplTexture()