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:
-rw-r--r--intern/cycles/kernel/light/light.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/intern/cycles/kernel/light/light.h b/intern/cycles/kernel/light/light.h
index 1c0e97b1675..b08b4ebc068 100644
--- a/intern/cycles/kernel/light/light.h
+++ b/intern/cycles/kernel/light/light.h
@@ -381,11 +381,19 @@ ccl_device bool light_sample_from_distant_ray(KernelGlobals kg,
float costheta = dot(-lightD, ray_D);
float cosangle = klight->distant.cosangle;
+ /* Workaround to prevent a hang in the classroom scene with AMD HIP drivers 22.10,
+ * Remove when a compiler fix is available. */
+#ifdef __HIP__
+ ls->shader = klight->shader_id;
+#endif
+
if (costheta < cosangle)
return false;
ls->type = type;
+#ifndef __HIP__
ls->shader = klight->shader_id;
+#endif
ls->object = PRIM_NONE;
ls->prim = PRIM_NONE;
ls->lamp = lamp;