Lines Matching refs:dstX
223 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
225 BlendScaleStandard(dstX, srcX, srcWeights[0]); in Blend()
226 BlendRotateMatrix (dstX, srcX, srcWeights[1]); in Blend()
227 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
242 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
243 return dstX->NormalizeRotateMatrix(); in PostBlend()
255 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
257 return OverrideTransform(dstX, srcX, 0); in Override()
304 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
306 BlendScaleAccurate(dstX, srcX, srcWeights[0]); in Blend()
307 BlendRotateMatrix (dstX, srcX, srcWeights[1]); in Blend()
308 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
323 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
324 const bool scaleRet = PostBlendAccurateScale(dstX); in PostBlend()
325 return dstX->NormalizeRotateMatrix() && scaleRet; in PostBlend()
337 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
339 return OverrideTransform(dstX, srcX, FLAG_ACCURATE_SCALE); in Override()
386 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
388 BlendScaleStandard (dstX, srcX, srcWeights[0]); in Blend()
389 BlendRotateQuaternion(dstX, srcX, srcWeights[1]); in Blend()
390 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
405 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
406 return dstX->QuaternionToRotateMatrix(); in PostBlend()
418 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
420 return OverrideTransform(dstX, srcX, FLAG_QUATERNION_ROTATE); in Override()
467 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
469 BlendScaleAccurate (dstX, srcX, srcWeights[0]); in Blend()
470 BlendRotateQuaternion(dstX, srcX, srcWeights[1]); in Blend()
471 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
486 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
487 const bool scaleRet = PostBlendAccurateScale(dstX); in PostBlend()
488 return dstX->QuaternionToRotateMatrix() && scaleRet; in PostBlend()
500 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
502 return OverrideTransform(dstX, srcX, FLAG_ACCURATE_SCALE | FLAG_QUATERNION_ROTATE); in Override()