2011-04-27 11:58:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011, Blender Foundation.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kernel_differential.h"
|
|
|
|
#include "kernel_montecarlo.h"
|
|
|
|
#include "kernel_triangle.h"
|
|
|
|
#include "kernel_object.h"
|
|
|
|
#ifdef __QBVH__
|
|
|
|
#include "kernel_qbvh.h"
|
|
|
|
#else
|
|
|
|
#include "kernel_bvh.h"
|
|
|
|
#endif
|
|
|
|
#include "kernel_camera.h"
|
|
|
|
#include "kernel_shader.h"
|
|
|
|
#include "kernel_light.h"
|
|
|
|
#include "kernel_emission.h"
|
|
|
|
#include "kernel_random.h"
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
#ifdef __MODIFY_TP__
|
2011-12-20 12:25:37 +00:00
|
|
|
__device float3 path_terminate_modified_throughput(KernelGlobals *kg, __global float3 *buffer, int x, int y, int offset, int stride, int sample)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
/* modify throughput to influence path termination probability, to avoid
|
|
|
|
darker regions receiving fewer samples than lighter regions. also RGB
|
|
|
|
are weighted differently. proper validation still remains to be done. */
|
|
|
|
const float3 weights = make_float3(1.0f, 1.33f, 0.66f);
|
|
|
|
const float3 one = make_float3(1.0f, 1.0f, 1.0f);
|
2011-09-16 13:14:02 +00:00
|
|
|
const int minsample = 5;
|
2011-04-27 11:58:34 +00:00
|
|
|
const float minL = 0.1f;
|
|
|
|
|
2011-09-16 13:14:02 +00:00
|
|
|
if(sample >= minsample) {
|
2011-12-20 12:25:37 +00:00
|
|
|
float3 L = buffer[offset + x + y*stride];
|
2011-04-27 11:58:34 +00:00
|
|
|
float3 Lmin = make_float3(minL, minL, minL);
|
2011-09-16 13:14:02 +00:00
|
|
|
float correct = (float)(sample+1)/(float)sample;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-09-16 13:14:02 +00:00
|
|
|
L = film_map(L*correct, sample);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
return weights/clamp(L, Lmin, one);
|
|
|
|
}
|
|
|
|
|
|
|
|
return weights;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
typedef struct PathState {
|
|
|
|
uint flag;
|
|
|
|
int bounce;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
int diffuse_bounce;
|
|
|
|
int glossy_bounce;
|
|
|
|
int transmission_bounce;
|
|
|
|
int transparent_bounce;
|
|
|
|
} PathState;
|
|
|
|
|
|
|
|
__device_inline void path_state_init(PathState *state)
|
|
|
|
{
|
2011-10-16 17:54:43 +00:00
|
|
|
state->flag = PATH_RAY_CAMERA|PATH_RAY_SINGULAR|PATH_RAY_MIS_SKIP;
|
2011-09-01 15:53:36 +00:00
|
|
|
state->bounce = 0;
|
|
|
|
state->diffuse_bounce = 0;
|
|
|
|
state->glossy_bounce = 0;
|
|
|
|
state->transmission_bounce = 0;
|
|
|
|
state->transparent_bounce = 0;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2011-10-16 17:54:43 +00:00
|
|
|
__device_inline void path_state_next(KernelGlobals *kg, PathState *state, int label)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2011-09-01 15:53:36 +00:00
|
|
|
/* ray through transparent keeps same flags from previous ray and is
|
|
|
|
not counted as a regular bounce, transparent has separate max */
|
|
|
|
if(label & LABEL_TRANSPARENT) {
|
|
|
|
state->flag |= PATH_RAY_TRANSPARENT;
|
|
|
|
state->transparent_bounce++;
|
|
|
|
|
2011-10-16 17:54:43 +00:00
|
|
|
if(!kernel_data.integrator.transparent_shadows)
|
|
|
|
state->flag |= PATH_RAY_MIS_SKIP;
|
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->bounce++;
|
|
|
|
|
|
|
|
/* reflection/transmission */
|
2011-04-27 11:58:34 +00:00
|
|
|
if(label & LABEL_REFLECT) {
|
2011-09-01 15:53:36 +00:00
|
|
|
state->flag |= PATH_RAY_REFLECT;
|
|
|
|
state->flag &= ~(PATH_RAY_TRANSMIT|PATH_RAY_CAMERA|PATH_RAY_TRANSPARENT);
|
|
|
|
|
|
|
|
if(label & LABEL_DIFFUSE)
|
|
|
|
state->diffuse_bounce++;
|
|
|
|
else
|
|
|
|
state->glossy_bounce++;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
kernel_assert(label & LABEL_TRANSMIT);
|
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
state->flag |= PATH_RAY_TRANSMIT;
|
|
|
|
state->flag &= ~(PATH_RAY_REFLECT|PATH_RAY_CAMERA|PATH_RAY_TRANSPARENT);
|
|
|
|
|
|
|
|
state->transmission_bounce++;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* diffuse/glossy/singular */
|
|
|
|
if(label & LABEL_DIFFUSE) {
|
2011-09-01 15:53:36 +00:00
|
|
|
state->flag |= PATH_RAY_DIFFUSE;
|
2011-10-16 17:54:43 +00:00
|
|
|
state->flag &= ~(PATH_RAY_GLOSSY|PATH_RAY_SINGULAR|PATH_RAY_MIS_SKIP);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
else if(label & LABEL_GLOSSY) {
|
2011-09-01 15:53:36 +00:00
|
|
|
state->flag |= PATH_RAY_GLOSSY;
|
2011-10-16 17:54:43 +00:00
|
|
|
state->flag &= ~(PATH_RAY_DIFFUSE|PATH_RAY_SINGULAR|PATH_RAY_MIS_SKIP);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
else {
|
2011-09-01 15:53:36 +00:00
|
|
|
kernel_assert(label & LABEL_SINGULAR);
|
|
|
|
|
2011-10-16 17:54:43 +00:00
|
|
|
state->flag |= PATH_RAY_GLOSSY|PATH_RAY_SINGULAR|PATH_RAY_MIS_SKIP;
|
2011-09-01 15:53:36 +00:00
|
|
|
state->flag &= ~PATH_RAY_DIFFUSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-21 20:51:43 +00:00
|
|
|
__device_inline uint path_state_ray_visibility(KernelGlobals *kg, PathState *state)
|
2011-09-01 15:53:36 +00:00
|
|
|
{
|
|
|
|
uint flag = state->flag;
|
|
|
|
|
|
|
|
/* for visibility, diffuse/glossy are for reflection only */
|
|
|
|
if(flag & PATH_RAY_TRANSMIT)
|
|
|
|
flag &= ~(PATH_RAY_DIFFUSE|PATH_RAY_GLOSSY);
|
2011-12-21 20:51:43 +00:00
|
|
|
/* for camera visibility, use render layer flags */
|
|
|
|
if(flag & PATH_RAY_CAMERA)
|
|
|
|
flag |= kernel_data.integrator.layer_flag;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
__device_inline float path_state_terminate_probability(KernelGlobals *kg, PathState *state, const float3 throughput)
|
|
|
|
{
|
|
|
|
if(state->flag & PATH_RAY_TRANSPARENT) {
|
|
|
|
/* transparent rays treated separately */
|
|
|
|
if(state->transparent_bounce >= kernel_data.integrator.transparent_max_bounce)
|
|
|
|
return 0.0f;
|
|
|
|
else if(state->transparent_bounce <= kernel_data.integrator.transparent_min_bounce)
|
|
|
|
return 1.0f;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
2011-09-01 15:53:36 +00:00
|
|
|
else {
|
|
|
|
/* other rays */
|
|
|
|
if((state->bounce >= kernel_data.integrator.max_bounce) ||
|
|
|
|
(state->diffuse_bounce >= kernel_data.integrator.max_diffuse_bounce) ||
|
|
|
|
(state->glossy_bounce >= kernel_data.integrator.max_glossy_bounce) ||
|
|
|
|
(state->transmission_bounce >= kernel_data.integrator.max_transmission_bounce))
|
|
|
|
return 0.0f;
|
|
|
|
else if(state->bounce <= kernel_data.integrator.min_bounce)
|
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* probalistic termination */
|
|
|
|
return average(throughput);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 13:13:56 +00:00
|
|
|
__device_inline bool shadow_blocked(KernelGlobals *kg, PathState *state, Ray *ray, Intersection *isect, float3 *light_L)
|
|
|
|
{
|
|
|
|
if(ray->t == 0.0f)
|
|
|
|
return false;
|
|
|
|
|
2011-10-16 17:54:43 +00:00
|
|
|
bool result = scene_intersect(kg, ray, PATH_RAY_SHADOW_OPAQUE, isect);
|
2011-09-12 13:13:56 +00:00
|
|
|
|
|
|
|
#ifdef __TRANSPARENT_SHADOWS__
|
|
|
|
if(result && kernel_data.integrator.transparent_shadows) {
|
|
|
|
/* transparent shadows work in such a way to try to minimize overhead
|
|
|
|
in cases where we don't need them. after a regular shadow ray is
|
|
|
|
cast we check if the hit primitive was potentially transparent, and
|
|
|
|
only in that case start marching. this gives on extra ray cast for
|
2011-10-16 17:54:43 +00:00
|
|
|
the cases were we do want transparency.
|
|
|
|
|
|
|
|
also note that for this to work correct, multi close sampling must
|
|
|
|
be used, since we don't pass a random number to shader_eval_surface */
|
2011-09-12 13:13:56 +00:00
|
|
|
if(shader_transparent_shadow(kg, isect)) {
|
|
|
|
float3 throughput = make_float3(1.0f, 1.0f, 1.0f);
|
|
|
|
float3 Pend = ray->P + ray->D*ray->t;
|
|
|
|
int bounce = state->transparent_bounce;
|
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
if(bounce >= kernel_data.integrator.transparent_max_bounce) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(bounce >= kernel_data.integrator.transparent_min_bounce) {
|
|
|
|
/* todo: get random number somewhere for probabilistic terminate */
|
|
|
|
#if 0
|
|
|
|
float probability = average(throughput);
|
2011-10-16 17:54:43 +00:00
|
|
|
float terminate = 0.0f;
|
2011-09-12 13:13:56 +00:00
|
|
|
|
|
|
|
if(terminate >= probability)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
throughput /= probability;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-10-16 17:54:43 +00:00
|
|
|
if(!scene_intersect(kg, ray, PATH_RAY_SHADOW_TRANSPARENT, isect)) {
|
2011-09-12 13:13:56 +00:00
|
|
|
*light_L *= throughput;
|
|
|
|
return false;
|
|
|
|
}
|
2011-10-16 17:54:43 +00:00
|
|
|
|
2011-09-12 13:13:56 +00:00
|
|
|
if(!shader_transparent_shadow(kg, isect))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
ShaderData sd;
|
|
|
|
shader_setup_from_ray(kg, &sd, isect, ray);
|
2011-10-16 17:54:43 +00:00
|
|
|
shader_eval_surface(kg, &sd, 0.0f, PATH_RAY_SHADOW);
|
2011-09-12 13:13:56 +00:00
|
|
|
|
|
|
|
throughput *= shader_bsdf_transparency(kg, &sd);
|
|
|
|
|
|
|
|
ray->P = ray_offset(sd.P, -sd.Ng);
|
2011-10-16 17:54:43 +00:00
|
|
|
if(ray->t != FLT_MAX)
|
|
|
|
ray->D = normalize_len(Pend - ray->P, &ray->t);
|
2011-09-12 13:13:56 +00:00
|
|
|
|
|
|
|
bounce++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-16 13:14:02 +00:00
|
|
|
__device float4 kernel_path_integrate(KernelGlobals *kg, RNG *rng, int sample, Ray ray, float3 throughput)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
/* initialize */
|
|
|
|
float3 L = make_float3(0.0f, 0.0f, 0.0f);
|
2011-08-28 13:55:59 +00:00
|
|
|
float Ltransparent = 0.0f;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
#ifdef __EMISSION__
|
|
|
|
float ray_pdf = 0.0f;
|
|
|
|
#endif
|
2011-09-01 15:53:36 +00:00
|
|
|
PathState state;
|
2011-04-27 11:58:34 +00:00
|
|
|
int rng_offset = PRNG_BASE_NUM;
|
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
path_state_init(&state);
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
/* path iteration */
|
2011-09-01 15:53:36 +00:00
|
|
|
for(;; rng_offset += PRNG_BOUNCE_NUM) {
|
2011-04-27 11:58:34 +00:00
|
|
|
/* intersect scene */
|
|
|
|
Intersection isect;
|
2011-12-21 20:51:43 +00:00
|
|
|
uint visibility = path_state_ray_visibility(kg, &state);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
if(!scene_intersect(kg, &ray, visibility, &isect)) {
|
2011-04-27 11:58:34 +00:00
|
|
|
/* eval background shader if nothing hit */
|
2011-09-01 15:53:36 +00:00
|
|
|
if(kernel_data.background.transparent && (state.flag & PATH_RAY_CAMERA)) {
|
2011-08-28 13:55:59 +00:00
|
|
|
Ltransparent += average(throughput);
|
|
|
|
}
|
|
|
|
else {
|
2012-01-20 17:49:17 +00:00
|
|
|
/* sample background shader */
|
|
|
|
float3 background_L = indirect_background(kg, &ray, state.flag, ray_pdf);
|
|
|
|
L += throughput*background_L;
|
2011-08-28 13:55:59 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup shading */
|
|
|
|
ShaderData sd;
|
|
|
|
shader_setup_from_ray(kg, &sd, &isect, &ray);
|
2011-09-16 13:14:02 +00:00
|
|
|
float rbsdf = path_rng(kg, rng, sample, rng_offset + PRNG_BSDF);
|
2011-09-01 15:53:36 +00:00
|
|
|
shader_eval_surface(kg, &sd, rbsdf, state.flag);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-08-28 13:55:59 +00:00
|
|
|
#ifdef __HOLDOUT__
|
2011-09-01 15:53:36 +00:00
|
|
|
if((sd.flag & SD_HOLDOUT) && (state.flag & PATH_RAY_CAMERA)) {
|
2011-08-28 13:55:59 +00:00
|
|
|
float3 holdout_weight = shader_holdout_eval(kg, &sd);
|
|
|
|
|
2011-08-29 17:17:40 +00:00
|
|
|
if(kernel_data.background.transparent)
|
2011-08-28 13:55:59 +00:00
|
|
|
Ltransparent += average(holdout_weight*throughput);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
#ifdef __EMISSION__
|
|
|
|
/* emission */
|
2011-09-27 20:37:24 +00:00
|
|
|
if(sd.flag & SD_EMISSION)
|
|
|
|
L += throughput*indirect_emission(kg, &sd, isect.t, state.flag, ray_pdf);
|
2011-09-01 15:53:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* path termination. this is a strange place to put the termination, it's
|
|
|
|
mainly due to the mixed in MIS that we use. gives too many unneeded
|
|
|
|
shader evaluations, only need emission if we are going to terminate */
|
|
|
|
float probability = path_state_terminate_probability(kg, &state, throughput);
|
2011-09-16 13:14:02 +00:00
|
|
|
float terminate = path_rng(kg, rng, sample, rng_offset + PRNG_TERMINATE);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
if(terminate >= probability)
|
|
|
|
break;
|
|
|
|
|
|
|
|
throughput /= probability;
|
|
|
|
|
|
|
|
#ifdef __EMISSION__
|
2011-09-27 20:37:24 +00:00
|
|
|
if(kernel_data.integrator.use_direct_light) {
|
2011-04-27 11:58:34 +00:00
|
|
|
/* sample illumination from lights to find path contribution */
|
2011-09-01 15:53:36 +00:00
|
|
|
if(sd.flag & SD_BSDF_HAS_EVAL) {
|
2011-09-16 13:14:02 +00:00
|
|
|
float light_t = path_rng(kg, rng, sample, rng_offset + PRNG_LIGHT);
|
|
|
|
float light_o = path_rng(kg, rng, sample, rng_offset + PRNG_LIGHT_F);
|
|
|
|
float light_u = path_rng(kg, rng, sample, rng_offset + PRNG_LIGHT_U);
|
|
|
|
float light_v = path_rng(kg, rng, sample, rng_offset + PRNG_LIGHT_V);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
Ray light_ray;
|
|
|
|
float3 light_L;
|
|
|
|
|
2011-09-12 13:13:56 +00:00
|
|
|
#ifdef __MULTI_LIGHT__
|
|
|
|
/* index -1 means randomly sample from distribution */
|
|
|
|
int i = (kernel_data.integrator.num_distribution)? -1: 0;
|
2011-09-01 15:53:36 +00:00
|
|
|
|
2011-09-12 13:13:56 +00:00
|
|
|
for(; i < kernel_data.integrator.num_all_lights; i++) {
|
|
|
|
#else
|
|
|
|
const int i = -1;
|
|
|
|
#endif
|
|
|
|
if(direct_emission(kg, &sd, i, light_t, light_o, light_u, light_v, &light_ray, &light_L)) {
|
|
|
|
/* trace shadow ray */
|
|
|
|
if(!shadow_blocked(kg, &state, &light_ray, &isect, &light_L))
|
|
|
|
L += throughput*light_L;
|
|
|
|
}
|
|
|
|
#ifdef __MULTI_LIGHT__
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
2011-09-12 13:13:56 +00:00
|
|
|
#endif
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-28 13:55:59 +00:00
|
|
|
/* no BSDF? we can stop here */
|
2011-09-01 15:53:36 +00:00
|
|
|
if(!(sd.flag & SD_BSDF))
|
2011-08-28 13:55:59 +00:00
|
|
|
break;
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
/* sample BSDF */
|
|
|
|
float bsdf_pdf;
|
|
|
|
float3 bsdf_eval;
|
|
|
|
float3 bsdf_omega_in;
|
|
|
|
differential3 bsdf_domega_in;
|
2011-09-16 13:14:02 +00:00
|
|
|
float bsdf_u = path_rng(kg, rng, sample, rng_offset + PRNG_BSDF_U);
|
|
|
|
float bsdf_v = path_rng(kg, rng, sample, rng_offset + PRNG_BSDF_V);
|
2011-04-27 11:58:34 +00:00
|
|
|
int label;
|
|
|
|
|
|
|
|
label = shader_bsdf_sample(kg, &sd, bsdf_u, bsdf_v, &bsdf_eval,
|
|
|
|
&bsdf_omega_in, &bsdf_domega_in, &bsdf_pdf);
|
|
|
|
|
|
|
|
shader_release(kg, &sd);
|
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
if(bsdf_pdf == 0.0f || is_zero(bsdf_eval))
|
2011-04-27 11:58:34 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* modify throughput */
|
|
|
|
throughput *= bsdf_eval/bsdf_pdf;
|
|
|
|
|
|
|
|
/* set labels */
|
2012-01-20 17:49:17 +00:00
|
|
|
#if defined(__EMISSION__) || defined(__BACKGROUND__)
|
2011-04-27 11:58:34 +00:00
|
|
|
ray_pdf = bsdf_pdf;
|
|
|
|
#endif
|
|
|
|
|
2011-09-01 15:53:36 +00:00
|
|
|
/* update path state */
|
2011-10-16 17:54:43 +00:00
|
|
|
path_state_next(kg, &state, label);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
/* setup ray */
|
|
|
|
ray.P = ray_offset(sd.P, (label & LABEL_TRANSMIT)? -sd.Ng: sd.Ng);
|
|
|
|
ray.D = bsdf_omega_in;
|
|
|
|
ray.t = FLT_MAX;
|
|
|
|
#ifdef __RAY_DIFFERENTIALS__
|
|
|
|
ray.dP = sd.dP;
|
|
|
|
ray.dD = bsdf_domega_in;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-08-28 13:55:59 +00:00
|
|
|
return make_float4(L.x, L.y, L.z, 1.0f - Ltransparent);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 12:25:37 +00:00
|
|
|
__device void kernel_path_trace(KernelGlobals *kg, __global float4 *buffer, __global uint *rng_state, int sample, int x, int y, int offset, int stride)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
/* initialize random numbers */
|
|
|
|
RNG rng;
|
|
|
|
|
|
|
|
float filter_u;
|
|
|
|
float filter_v;
|
|
|
|
|
2011-12-20 12:25:37 +00:00
|
|
|
path_rng_init(kg, rng_state, sample, &rng, x, y, offset, stride, &filter_u, &filter_v);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
/* sample camera ray */
|
|
|
|
Ray ray;
|
|
|
|
|
2011-09-16 13:14:02 +00:00
|
|
|
float lens_u = path_rng(kg, &rng, sample, PRNG_LENS_U);
|
|
|
|
float lens_v = path_rng(kg, &rng, sample, PRNG_LENS_V);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
camera_sample(kg, x, y, filter_u, filter_v, lens_u, lens_v, &ray);
|
|
|
|
|
|
|
|
/* integrate */
|
|
|
|
#ifdef __MODIFY_TP__
|
2011-12-20 12:25:37 +00:00
|
|
|
float3 throughput = path_terminate_modified_throughput(kg, buffer, x, y, offset, stride, sample);
|
2011-09-16 13:14:02 +00:00
|
|
|
float4 L = kernel_path_integrate(kg, &rng, sample, ray, throughput)/throughput;
|
2011-04-27 11:58:34 +00:00
|
|
|
#else
|
|
|
|
float3 throughput = make_float3(1.0f, 1.0f, 1.0f);
|
2011-09-16 13:14:02 +00:00
|
|
|
float4 L = kernel_path_integrate(kg, &rng, sample, ray, throughput);
|
2011-04-27 11:58:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* accumulate result in output buffer */
|
2011-12-20 12:25:37 +00:00
|
|
|
int index = offset + x + y*stride;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-09-16 13:14:02 +00:00
|
|
|
if(sample == 0)
|
2011-08-28 13:55:59 +00:00
|
|
|
buffer[index] = L;
|
2011-04-27 11:58:34 +00:00
|
|
|
else
|
2011-08-28 13:55:59 +00:00
|
|
|
buffer[index] += L;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-12-20 12:25:37 +00:00
|
|
|
path_rng_end(kg, rng_state, rng, x, y, offset, stride);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|