Exemplo n.º 1
0
 Col3f PathTraceIntegrator::Li(const Ray& ray, const Ref<BackendScene>& scene, Sampler* sampler, size_t& numRays) {
   return Li(LightPath(ray),scene,sampler,numRays);
 }
Exemplo n.º 2
0
 Col3f PathTraceIntegrator::Li(const Ray& ray, const Ref<BackendScene>& scene, const PrecomputedSample& sample, size_t& numRays) {
   return Li(LightPath(ray),scene,sample,numRays);
 }