| 736 | } |
| 737 | |
| 738 | inline Vec3fa face_forward(const Vec3fa& dir, const Vec3fa& _Ng) { |
| 739 | const Vec3fa Ng = _Ng; |
| 740 | return dot(dir,Ng) < 0.0f ? Ng : neg(Ng); |
| 741 | } |
| 742 | |
| 743 | /* task that renders a single screen tile */ |
| 744 | Vec3fa renderPixelStandard(const TutorialData& data, |
no test coverage detected