Lines Matching refs:pV
40 const PVRTVECTOR3 * const pV, in PVRTBoundingBoxCompute() argument
47 MinX=pV->x; MaxX=pV->x; in PVRTBoundingBoxCompute()
48 MinY=pV->y; MaxY=pV->y; in PVRTBoundingBoxCompute()
49 MinZ=pV->z; MaxZ=pV->z; in PVRTBoundingBoxCompute()
55 if (pV[i].x < MinX) MinX = pV[i].x; in PVRTBoundingBoxCompute()
56 if (pV[i].x > MaxX) MaxX = pV[i].x; in PVRTBoundingBoxCompute()
59 if (pV[i].y < MinY) MinY = pV[i].y; in PVRTBoundingBoxCompute()
60 if (pV[i].y > MaxY) MaxY = pV[i].y; in PVRTBoundingBoxCompute()
63 if (pV[i].z < MinZ) MinZ = pV[i].z; in PVRTBoundingBoxCompute()
64 if (pV[i].z > MaxZ) MaxZ = pV[i].z; in PVRTBoundingBoxCompute()
126 const unsigned char * const pV, in PVRTBoundingBoxComputeInterleaved() argument
135 PVRTVECTOR3 *pVertex =(PVRTVECTOR3*)(pV+i32Offset); in PVRTBoundingBoxComputeInterleaved()
309 const PVRTVECTOR3 * const pV, in PVRTTransformVec3Array() argument
318 pSrc = pV; in PVRTTransformVec3Array()
362 const PVRTVECTOR3 * const pV, in PVRTTransformArray() argument
372 pTransformedVertex[i].x = VERTTYPEMUL(pMatrix->f[ 0], pV[i].x) + in PVRTTransformArray()
373 VERTTYPEMUL(pMatrix->f[ 4], pV[i].y) + in PVRTTransformArray()
374 VERTTYPEMUL(pMatrix->f[ 8], pV[i].z) + in PVRTTransformArray()
376 pTransformedVertex[i].y = VERTTYPEMUL(pMatrix->f[ 1], pV[i].x) + in PVRTTransformArray()
377 VERTTYPEMUL(pMatrix->f[ 5], pV[i].y) + in PVRTTransformArray()
378 VERTTYPEMUL(pMatrix->f[ 9], pV[i].z) + in PVRTTransformArray()
380 pTransformedVertex[i].z = VERTTYPEMUL(pMatrix->f[ 2], pV[i].x) + in PVRTTransformArray()
381 VERTTYPEMUL(pMatrix->f[ 6], pV[i].y) + in PVRTTransformArray()
382 VERTTYPEMUL(pMatrix->f[10], pV[i].z) + in PVRTTransformArray()
422 const PVRTVECTOR4 * const pV, in PVRTTransformBack() argument
454 ppfRows[0][0] = pV->x; in PVRTTransformBack()
455 ppfRows[1][0] = pV->y; in PVRTTransformBack()
456 ppfRows[2][0] = pV->z; in PVRTTransformBack()
457 ppfRows[3][0] = pV->w; in PVRTTransformBack()
474 const PVRTVECTOR4 * const pV, in PVRTTransform() argument
477 …->x = VERTTYPEMUL(pM->f[0], pV->x) + VERTTYPEMUL(pM->f[4], pV->y) + VERTTYPEMUL(pM->f[8], pV->z) … in PVRTTransform()
478 …->y = VERTTYPEMUL(pM->f[1], pV->x) + VERTTYPEMUL(pM->f[5], pV->y) + VERTTYPEMUL(pM->f[9], pV->z) … in PVRTTransform()
479 …->z = VERTTYPEMUL(pM->f[2], pV->x) + VERTTYPEMUL(pM->f[6], pV->y) + VERTTYPEMUL(pM->f[10], pV->z) … in PVRTTransform()
480 …->w = VERTTYPEMUL(pM->f[3], pV->x) + VERTTYPEMUL(pM->f[7], pV->y) + VERTTYPEMUL(pM->f[11], pV->z) … in PVRTTransform()