* This is embarrassing...

This commit is contained in:
Thomas Dinges 2013-05-16 15:59:05 +00:00
parent 4475de5bd8
commit 34ba69d576

@ -59,7 +59,7 @@ __device float3 bsdf_toon_get_intensity(float max_angle, float smooth, float ang
else if(angle < (max_angle + smooth) && smooth != 0.0f)
is = (1.0f - (angle - max_angle)/smooth);
else
is = 0.0f
is = 0.0f;
return make_float3(is, is, is);
}