| 91 | } |
| 92 | |
| 93 | __forceinline Vec2f RandomSampler_get2D(RandomSampler& self) |
| 94 | { |
| 95 | const float u = RandomSampler_get1D(self); |
| 96 | const float v = RandomSampler_get1D(self); |
| 97 | return Vec2f(u,v); |
| 98 | } |
| 99 | |
| 100 | __forceinline Vec3fa RandomSampler_get3D(RandomSampler& self) |
| 101 | { |
no test coverage detected