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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-27 04:36:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-27 04:36:50 +0400
commit857dedbc584fcf0af0afa13f008377fd9a83dad1 (patch)
tree1a6d3fa834658422032f4de3140472b82a8cbfa6 /intern/cycles/kernel/svm/svm_tex_coord.h
parent822362189badefd6c0014f608d36d98e8ab57282 (diff)
style cleanup
Diffstat (limited to 'intern/cycles/kernel/svm/svm_tex_coord.h')
-rw-r--r--intern/cycles/kernel/svm/svm_tex_coord.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/svm/svm_tex_coord.h b/intern/cycles/kernel/svm/svm_tex_coord.h
index 9952557d614..854a708a988 100644
--- a/intern/cycles/kernel/svm/svm_tex_coord.h
+++ b/intern/cycles/kernel/svm/svm_tex_coord.h
@@ -43,7 +43,7 @@ __device_inline float3 svm_world_to_ndc(KernelGlobals *kg, ShaderData *sd, float
else
P = normalize(transform_direction(&tfm, P));
- float2 uv = direction_to_panorama(kg, P);;
+ float2 uv = direction_to_panorama(kg, P);
return make_float3(uv.x, uv.y, 0.0f);
}