Lines Matching refs:dstX
222 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
224 BlendScaleStandard(dstX, srcX, srcWeights[0]); in Blend()
225 BlendRotateMatrix (dstX, srcX, srcWeights[1]); in Blend()
226 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
241 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
242 return dstX->NormalizeRotateMatrix(); in PostBlend()
254 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
256 return OverrideTransform(dstX, srcX, 0); in Override()
303 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
305 BlendScaleAccurate(dstX, srcX, srcWeights[0]); in Blend()
306 BlendRotateMatrix (dstX, srcX, srcWeights[1]); in Blend()
307 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
322 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
323 const bool scaleRet = PostBlendAccurateScale(dstX); in PostBlend()
324 return dstX->NormalizeRotateMatrix() && scaleRet; in PostBlend()
336 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
338 return OverrideTransform(dstX, srcX, FLAG_ACCURATE_SCALE); in Override()
385 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
387 BlendScaleStandard (dstX, srcX, srcWeights[0]); in Blend()
388 BlendRotateQuaternion(dstX, srcX, srcWeights[1]); in Blend()
389 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
404 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
405 return dstX->QuaternionToRotateMatrix(); in PostBlend()
417 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
419 return OverrideTransform(dstX, srcX, FLAG_QUATERNION_ROTATE); in Override()
466 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Blend() local
468 BlendScaleAccurate (dstX, srcX, srcWeights[0]); in Blend()
469 BlendRotateQuaternion(dstX, srcX, srcWeights[1]); in Blend()
470 BlendTranslate (dstX, srcX, srcWeights[2]); in Blend()
485 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(result); in PostBlend() local
486 const bool scaleRet = PostBlendAccurateScale(dstX); in PostBlend()
487 return dstX->QuaternionToRotateMatrix() && scaleRet; in PostBlend()
499 CalculatedTransform* dstX = reinterpret_cast<CalculatedTransform*>(dst); in Override() local
501 return OverrideTransform(dstX, srcX, FLAG_ACCURATE_SCALE | FLAG_QUATERNION_ROTATE); in Override()