From c536eb410ce7ccd6a103c7dc1f1f35fb14c4afbf Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Dec 2021 15:26:28 +1100 Subject: Cleanup: spelling in comments --- intern/cycles/kernel/geom/point_intersect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern/cycles') 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); -- cgit v1.2.3