2011-11-14 17:31:47 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-11-14 17:31:47 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-11-14 17:31:47 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-11-14 17:31:47 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2011-11-14 17:31:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BSDF_OREN_NAYAR_H__
|
|
|
|
#define __BSDF_OREN_NAYAR_H__
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device float3 bsdf_oren_nayar_get_intensity(const ShaderClosure *sc, float3 n, float3 v, float3 l)
|
2011-11-14 17:31:47 +00:00
|
|
|
{
|
|
|
|
float nl = max(dot(n, l), 0.0f);
|
|
|
|
float nv = max(dot(n, v), 0.0f);
|
2012-02-22 15:04:22 +00:00
|
|
|
float t = dot(l, v) - nl * nv;
|
2011-11-14 17:31:47 +00:00
|
|
|
|
2012-02-22 15:04:22 +00:00
|
|
|
if (t > 0.0f)
|
|
|
|
t /= max(nl, nv) + FLT_MIN;
|
|
|
|
float is = nl * (sc->data0 + sc->data1 * t);
|
2011-11-14 17:31:47 +00:00
|
|
|
return make_float3(is, is, is);
|
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device int bsdf_oren_nayar_setup(ShaderClosure *sc)
|
2011-11-14 17:31:47 +00:00
|
|
|
{
|
2012-10-20 12:18:00 +00:00
|
|
|
float sigma = sc->data0;
|
|
|
|
|
2011-11-14 17:31:47 +00:00
|
|
|
sc->type = CLOSURE_BSDF_OREN_NAYAR_ID;
|
|
|
|
|
|
|
|
sigma = clamp(sigma, 0.0f, 1.0f);
|
|
|
|
|
2012-02-22 15:04:22 +00:00
|
|
|
float div = 1.0f / (M_PI_F + ((3.0f * M_PI_F - 4.0f) / 6.0f) * sigma);
|
2011-11-18 15:39:40 +00:00
|
|
|
|
2012-02-22 15:04:22 +00:00
|
|
|
sc->data0 = 1.0f * div;
|
2011-11-18 15:39:40 +00:00
|
|
|
sc->data1 = sigma * div;
|
2012-10-20 12:18:00 +00:00
|
|
|
|
|
|
|
return SD_BSDF | SD_BSDF_HAS_EVAL;
|
2011-11-14 17:31:47 +00:00
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device void bsdf_oren_nayar_blur(ShaderClosure *sc, float roughness)
|
2011-11-14 17:31:47 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device float3 bsdf_oren_nayar_eval_reflect(const ShaderClosure *sc, const float3 I, const float3 omega_in, float *pdf)
|
2011-11-14 17:31:47 +00:00
|
|
|
{
|
2012-10-10 15:56:43 +00:00
|
|
|
if (dot(sc->N, omega_in) > 0.0f) {
|
2011-11-14 17:31:47 +00:00
|
|
|
*pdf = 0.5f * M_1_PI_F;
|
2012-10-10 15:56:43 +00:00
|
|
|
return bsdf_oren_nayar_get_intensity(sc, sc->N, I, omega_in);
|
2011-11-14 17:31:47 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
*pdf = 0.0f;
|
|
|
|
return make_float3(0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device float3 bsdf_oren_nayar_eval_transmit(const ShaderClosure *sc, const float3 I, const float3 omega_in, float *pdf)
|
2011-11-14 17:31:47 +00:00
|
|
|
{
|
|
|
|
return make_float3(0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device int bsdf_oren_nayar_sample(const ShaderClosure *sc, float3 Ng, float3 I, float3 dIdx, float3 dIdy, float randu, float randv, float3 *eval, float3 *omega_in, float3 *domega_in_dx, float3 *domega_in_dy, float *pdf)
|
2011-11-14 17:31:47 +00:00
|
|
|
{
|
2012-10-10 15:56:43 +00:00
|
|
|
sample_uniform_hemisphere(sc->N, randu, randv, omega_in, pdf);
|
2011-11-14 17:31:47 +00:00
|
|
|
|
2012-10-17 12:17:17 +00:00
|
|
|
if (dot(Ng, *omega_in) > 0.0f) {
|
|
|
|
*eval = bsdf_oren_nayar_get_intensity(sc, sc->N, I, *omega_in);
|
2011-11-14 17:31:47 +00:00
|
|
|
|
|
|
|
#ifdef __RAY_DIFFERENTIALS__
|
|
|
|
// TODO: find a better approximation for the bounce
|
2012-10-17 12:17:17 +00:00
|
|
|
*domega_in_dx = (2.0f * dot(sc->N, dIdx)) * sc->N - dIdx;
|
|
|
|
*domega_in_dy = (2.0f * dot(sc->N, dIdy)) * sc->N - dIdy;
|
2011-11-14 17:31:47 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*pdf = 0.0f;
|
|
|
|
*eval = make_float3(0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
return LABEL_REFLECT | LABEL_DIFFUSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif /* __BSDF_OREN_NAYAR_H__ */
|