MCPcopy Index your code
hub / github.com/HandmadeMath/HandmadeMath / HMM_LerpV4

Function HMM_LerpV4

HandmadeMath.h:1065–1069  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1063
1064COVERAGE(HMM_LerpV4, 1)
1065static inline HMM_Vec4 HMM_LerpV4(HMM_Vec4 A, float Time, HMM_Vec4 B)
1066{
1067 ASSERT_COVERED(HMM_LerpV4);
1068 return HMM_AddV4(HMM_MulV4F(A, 1.0f - Time), HMM_MulV4F(B, Time));
1069}
1070
1071/*
1072 * SSE stuff

Callers 2

HMM_LerpFunction · 0.85
TESTFunction · 0.85

Calls 2

HMM_AddV4Function · 0.85
HMM_MulV4FFunction · 0.85

Tested by

no test coverage detected