Lines Matching refs:tempMtx

186     Mtx tempMtx;  in setupMatrices()  local
191 MTXRotDeg(tempMtx, 'y', -LIT_Y_ANGLE); in setupMatrices()
192 MTXConcat(lightMtx, tempMtx, lightMtx); in setupMatrices()
193 MTXRotDeg(tempMtx, 'x', -LIT_X_ANGLE); in setupMatrices()
194 MTXConcat(lightMtx, tempMtx, lightMtx); in setupMatrices()
230 Mtx normalTexMtx, binormalTexMtx, textureMtx, tempMtx; in updateMatrices() local
236 if (!MTXInverse(vertexMtx, tempMtx)) {ASSERTMSG(0,"Singular matrix!\n");} in updateMatrices()
237 MTXTranspose(tempMtx, normalMtx); in updateMatrices()
241 MTXTrans(tempMtx, 0.5f, 0.5f, 0.0f); in updateMatrices()
242 MTXConcat(tempMtx, normalMtx, normalTexMtx); in updateMatrices()
243 MTXScale(tempMtx, NRM_SCALE/2, NRM_SCALE/2, NRM_SCALE/2); in updateMatrices()
244 MTXConcat(normalTexMtx, tempMtx, normalTexMtx); in updateMatrices()
255 MTXConcat(binormalMtx, tempMtx, binormalTexMtx); in updateMatrices()
272 Mtx tempMtx, litMtx; in setLight() local
281 if (!MTXInverse(obj, tempMtx)) {ASSERTMSG(0,"Singular matrix!\n");} in setLight()
282 MTXConcat(cam, tempMtx, litMtx); in setLight()
285 if (!MTXInverse(litMtx, tempMtx)) {ASSERTMSG(0,"Singular matrix!\n");} in setLight()
286 MTXTranspose(tempMtx, litMtx); in setLight()
526 Mtx donutMtx, tempMtx; in updateDonut() local
529 MTXRotDeg(tempMtx, 'x', r2); in updateDonut()
530 MTXConcat(tempMtx, objectMtx, objectMtx); in updateDonut()
531 MTXRotDeg(tempMtx, 'y', r1); in updateDonut()
532 MTXConcat(tempMtx, objectMtx, objectMtx); in updateDonut()
533 MTXTrans(tempMtx, x, y, z); in updateDonut()
534 MTXConcat(tempMtx, objectMtx, donutMtx); in updateDonut()