| 551 | } |
| 552 | |
| 553 | Vec3fa mylerp(float f, const Vec3fa& a, const Vec3fa& b) { // FIXME: use lerpr, need to make ISPC lerpr and C++ lerpr compatible first |
| 554 | return (1.0f-f)*a + f*b; |
| 555 | } |
| 556 | |
| 557 | /* task that renders a single screen tile */ |
| 558 | void renderPixelStandard(const TutorialData& data, |
no outgoing calls
no test coverage detected