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>2021-12-17 07:26:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-17 07:26:28 +0300
commitc536eb410ce7ccd6a103c7dc1f1f35fb14c4afbf (patch)
tree6ab8dade175ffee0b28d313739c8c9cf8fe3568f /intern/cycles
parent6b3c3454d36cf70910ab4e9ecbd4164befd381b8 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'intern/cycles')
-rw-r--r--intern/cycles/kernel/geom/point_intersect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/geom/point_intersect.h b/intern/cycles/kernel/geom/point_intersect.h
index da0b31f9a8c..24afa33c53a 100644
--- a/intern/cycles/kernel/geom/point_intersect.h
+++ b/intern/cycles/kernel/geom/point_intersect.h
@@ -43,7 +43,7 @@ ccl_device_forceinline bool point_intersect_test(
const float t_front = projC0 - td;
const bool valid_front = (0.0f <= t_front) & (t_front <= tmax);
- /* Always backface culling for now. */
+ /* Always back-face culling for now. */
# if 0
const float t_back = projC0 + td;
const bool valid_back = (0.0f <= t_back) & (t_back <= tmax);