| 1978 | } |
| 1979 | |
| 1980 | Pixel PixelLerp(const olc::Pixel& p1, const olc::Pixel& p2, float t) |
| 1981 | { |
| 1982 | return (p2 * t) + p1 * (1.0f - t); |
| 1983 | } |
| 1984 | #endif |
| 1985 | // O------------------------------------------------------------------------------O |
| 1986 | // | olc::Sprite IMPLEMENTATION | |
no outgoing calls
no test coverage detected