| 573 | {} |
| 574 | |
| 575 | static PIX Lerp(const PIX &v1, |
| 576 | const PIX &v2, |
| 577 | float blend) |
| 578 | { |
| 579 | return PIX( (v2 - v1) * blend + v1 ); |
| 580 | } |
| 581 | |
| 582 | // and do some processing |
| 583 | void multiThreadProcessImages(const OfxRectI& procWindow, const OfxPointD& rs) OVERRIDE FINAL |
nothing calls this directly
no outgoing calls
no test coverage detected