Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2013-05-16 19:59:05 +0400
committerThomas Dinges <blender@dingto.org>2013-05-16 19:59:05 +0400
commit34ba69d576883d2b87a33c24a5cc32c0929f8ab5 (patch)
tree3aae714d68bec686a88bcfc98719405f77a0dda7 /intern
parent4475de5bd8ea45d028f950325ed32a9089e84908 (diff)
* This is embarrassing...
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/kernel/closure/bsdf_toon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/closure/bsdf_toon.h b/intern/cycles/kernel/closure/bsdf_toon.h
index 9aa25a6c0c6..40001bf7531 100644
--- a/intern/cycles/kernel/closure/bsdf_toon.h
+++ b/intern/cycles/kernel/closure/bsdf_toon.h
@@ -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);
}