| 35 | } |
| 36 | |
| 37 | void AnalogTape::init_effect_details() { |
| 38 | InitEffectInfo(); |
| 39 | info.class_name = "AnalogTape"; |
| 40 | info.name = "Analog Tape"; |
| 41 | info.description = "Vintage home video wobble, bleed, and grain."; |
| 42 | info.has_video = true; |
| 43 | info.has_audio = false; |
| 44 | } |
| 45 | |
| 46 | static inline float lerp(float a, float b, float t) { return a + (b - a) * t; } |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected