Searched refs:VERTTYPEMUL (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTVector.cpp | 59 out.x = VERTTYPEMUL(x,rhs.f[0])+VERTTYPEMUL(y,rhs.f[1])+VERTTYPEMUL(z,rhs.f[2]); in operator *() 60 out.y = VERTTYPEMUL(x,rhs.f[3])+VERTTYPEMUL(y,rhs.f[4])+VERTTYPEMUL(z,rhs.f[5]); in operator *() 61 out.z = VERTTYPEMUL(x,rhs.f[6])+VERTTYPEMUL(y,rhs.f[7])+VERTTYPEMUL(z,rhs.f[8]); in operator *() 74 VERTTYPE tx = VERTTYPEMUL(x,rhs.f[0])+VERTTYPEMUL(y,rhs.f[1])+VERTTYPEMUL(z,rhs.f[2]); in operator *=() 75 VERTTYPE ty = VERTTYPEMUL(x,rhs.f[3])+VERTTYPEMUL(y,rhs.f[4])+VERTTYPEMUL(z,rhs.f[5]); in operator *=() 76 z = VERTTYPEMUL(x,rhs.f[6])+VERTTYPEMUL(y,rhs.f[7])+VERTTYPEMUL(z,rhs.f[8]); in operator *=() 96 …out.x = VERTTYPEMUL(x,rhs.f[0])+VERTTYPEMUL(y,rhs.f[1])+VERTTYPEMUL(z,rhs.f[2])+VERTTYPEMUL(w,rhs.… in operator *() 97 …out.y = VERTTYPEMUL(x,rhs.f[4])+VERTTYPEMUL(y,rhs.f[5])+VERTTYPEMUL(z,rhs.f[6])+VERTTYPEMUL(w,rhs.… in operator *() 98 …out.z = VERTTYPEMUL(x,rhs.f[8])+VERTTYPEMUL(y,rhs.f[9])+VERTTYPEMUL(z,rhs.f[10])+VERTTYPEMUL(w,rhs… in operator *() 99 …out.w = VERTTYPEMUL(x,rhs.f[12])+VERTTYPEMUL(y,rhs.f[13])+VERTTYPEMUL(z,rhs.f[14])+VERTTYPEMUL(w,r… in operator *() [all …]
|
D | PVRTVector.h | 171 x = VERTTYPEMUL(x, rhs); 172 y = VERTTYPEMUL(y, rhs); 183 x = VERTTYPEMUL(x, rhs.x); 184 y = VERTTYPEMUL(y, rhs.y); 250 return VERTTYPEMUL(x,x)+VERTTYPEMUL(y,y); in lenSqr() 303 return VERTTYPEMUL(x, rhs.x) + VERTTYPEMUL(y, rhs.y); in dot() 434 out.x = VERTTYPEMUL(lhs,rhs.x); 435 out.y = VERTTYPEMUL(lhs,rhs.y); 436 out.z = VERTTYPEMUL(lhs,rhs.z); 477 out.x = VERTTYPEMUL(x,rhs); [all …]
|
D | PVRTMisc.cpp | 55 VERTTYPEMUL(pfPlane[0], vD.x) + in PVRTMiscCalculateIntersectionLinePlane() 56 VERTTYPEMUL(pfPlane[1], vD.y) + in PVRTMiscCalculateIntersectionLinePlane() 57 VERTTYPEMUL(pfPlane[2], vD.z); in PVRTMiscCalculateIntersectionLinePlane() 61 VERTTYPEMUL(pfPlane[0], pv0->x) + in PVRTMiscCalculateIntersectionLinePlane() 62 VERTTYPEMUL(pfPlane[1], pv0->y) + in PVRTMiscCalculateIntersectionLinePlane() 63 VERTTYPEMUL(pfPlane[2], pv0->z) + in PVRTMiscCalculateIntersectionLinePlane() 69 pvIntersection->x = pv0->x + VERTTYPEMUL(fT, vD.x); in PVRTMiscCalculateIntersectionLinePlane() 70 pvIntersection->y = pv0->y + VERTTYPEMUL(fT, vD.y); in PVRTMiscCalculateIntersectionLinePlane() 71 pvIntersection->z = pv0->z + VERTTYPEMUL(fT, vD.z); in PVRTMiscCalculateIntersectionLinePlane() 112 VERTTYPEMUL((pFrom->x + VERTTYPEMUL(pvPlane->x, pvPlane->w)), pvPlane->x) + in PVRTMiscCalculateInfinitePlane() [all …]
|
D | PVRTTrans.cpp | 324 pDst->x = VERTTYPEMUL(pMatrix->f[ 0], pSrc->x) + in PVRTTransformVec3Array() 325 VERTTYPEMUL(pMatrix->f[ 4], pSrc->y) + in PVRTTransformVec3Array() 326 VERTTYPEMUL(pMatrix->f[ 8], pSrc->z) + in PVRTTransformVec3Array() 328 pDst->y = VERTTYPEMUL(pMatrix->f[ 1], pSrc->x) + in PVRTTransformVec3Array() 329 VERTTYPEMUL(pMatrix->f[ 5], pSrc->y) + in PVRTTransformVec3Array() 330 VERTTYPEMUL(pMatrix->f[ 9], pSrc->z) + in PVRTTransformVec3Array() 332 pDst->z = VERTTYPEMUL(pMatrix->f[ 2], pSrc->x) + in PVRTTransformVec3Array() 333 VERTTYPEMUL(pMatrix->f[ 6], pSrc->y) + in PVRTTransformVec3Array() 334 VERTTYPEMUL(pMatrix->f[10], pSrc->z) + in PVRTTransformVec3Array() 336 pDst->w = VERTTYPEMUL(pMatrix->f[ 3], pSrc->x) + in PVRTTransformVec3Array() [all …]
|
D | PVRTFixedPoint.h | 74 #define VERTTYPEMUL(a,b) PVRTXMUL(a,b) macro 94 #define VERTTYPEMUL(a,b) ( (VERTTYPE)((a)*(b)) ) macro
|
D | PVRTModelPOD.cpp | 2907 nWeight[i] = (int)vt2f((VERTTYPEMUL(f2vt(255.0f), pfBoneWeight[i])));
|