| 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 | { |
no outgoing calls
no test coverage detected