[Bf-blender-cvs] [f8db581a22b] temp-pbvh-split: Fix T97966: Cycles shadow terminator offset wrong for scaled object instances

Mikhail Matrosov noreply at git.blender.org
Fri Jun 3 01:16:27 CEST 2022


Commit: f8db581a22b835f941712a7500020506fd0521bd
Author: Mikhail Matrosov
Date:   Tue May 10 18:52:00 2022 +0200
Branches: temp-pbvh-split
https://developer.blender.org/rBf8db581a22b835f941712a7500020506fd0521bd

Fix T97966: Cycles shadow terminator offset wrong for scaled object instances

Differential Revision: https://developer.blender.org/D14893

===================================================================

M	intern/cycles/kernel/light/sample.h

===================================================================

diff --git a/intern/cycles/kernel/light/sample.h b/intern/cycles/kernel/light/sample.h
index 5acfc92cca1..9bbbd5b0d10 100644
--- a/intern/cycles/kernel/light/sample.h
+++ b/intern/cycles/kernel/light/sample.h
@@ -143,7 +143,7 @@ ccl_device_inline float3 shadow_ray_smooth_surface_offset(
   float3 n = N[0] * u + N[1] * v + N[2] * w; /* We get away without normalization */
 
   if (!(sd->object_flag & SD_OBJECT_TRANSFORM_APPLIED)) {
-    object_normal_transform(kg, sd, &n); /* Normal x scale, world space */
+    object_dir_transform(kg, sd, &n); /* Normal x scale, to world space */
   }
 
   /* Parabolic approximation */



More information about the Bf-blender-cvs mailing list