MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / lerp

Function lerp

src/SB/Game/zEntCruiseBubble.cpp:1302–1308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1300 }
1301
1302 void lerp(iColor_tag& c, F32 t, iColor_tag a, iColor_tag b)
1303 {
1304 lerp(c.r, t, a.r, b.r);
1305 lerp(c.g, t, a.g, b.g);
1306 lerp(c.b, t, a.b, b.b);
1307 lerp(c.a, t, a.a, b.a);
1308 }
1309
1310 void lerp(U8& x, F32 t, U8 a, U8 b)
1311 {

Callers 2

render_timerFunction · 0.70
lerpMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected