Lines Matching refs:pVertex
135 PVRTVECTOR3 *pVertex =(PVRTVECTOR3*)(pV+i32Offset); in PVRTBoundingBoxComputeInterleaved() local
138 MinX=pVertex->x; MaxX=pVertex->x; in PVRTBoundingBoxComputeInterleaved()
139 MinY=pVertex->y; MaxY=pVertex->y; in PVRTBoundingBoxComputeInterleaved()
140 MinZ=pVertex->z; MaxZ=pVertex->z; in PVRTBoundingBoxComputeInterleaved()
145 pVertex = (PVRTVECTOR3*)( (unsigned char*)(pVertex)+i32Stride); in PVRTBoundingBoxComputeInterleaved()
148 if (pVertex->x < MinX) MinX = pVertex->x; in PVRTBoundingBoxComputeInterleaved()
149 if (pVertex->x > MaxX) MaxX = pVertex->x; in PVRTBoundingBoxComputeInterleaved()
152 if (pVertex->y < MinY) MinY = pVertex->y; in PVRTBoundingBoxComputeInterleaved()
153 if (pVertex->y > MaxY) MaxY = pVertex->y; in PVRTBoundingBoxComputeInterleaved()
156 if (pVertex->z < MinZ) MinZ = pVertex->z; in PVRTBoundingBoxComputeInterleaved()
157 if (pVertex->z > MaxZ) MaxZ = pVertex->z; in PVRTBoundingBoxComputeInterleaved()
402 const PVRTVECTOR3 * const pVertex, in PVRTTransformArrayBack() argument
409 PVRTTransformArray(pTransformedVertex, pVertex, nNumberOfVertices, &mBack); in PVRTTransformArrayBack()