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 <campbell@blender.org>2022-07-21 06:21:53 +0300
committerCampbell Barton <campbell@blender.org>2022-07-21 06:21:53 +0300
commit46a2592eef90782bea6124767c072f275330bd00 (patch)
tree4c92bcf6338b21e5e058989b536a5e28dda0aea3 /intern/cycles/kernel/bvh
parente75adb979b0acefbf5f01b83f4139d6a43163b92 (diff)
Cleanup: spelling in comments, typos in tool-tips
Diffstat (limited to 'intern/cycles/kernel/bvh')
-rw-r--r--intern/cycles/kernel/bvh/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/bvh/util.h b/intern/cycles/kernel/bvh/util.h
index 1795ae4c790..385e904d20f 100644
--- a/intern/cycles/kernel/bvh/util.h
+++ b/intern/cycles/kernel/bvh/util.h
@@ -11,7 +11,7 @@ CCL_NAMESPACE_BEGIN
* intersection we'll be comparing against the exact same distances. */
ccl_device_forceinline float intersection_t_offset(const float t)
{
- /* This is a simplified version of nextafterf(t, FLT_MAX), only dealing with
+ /* This is a simplified version of `nextafterf(t, FLT_MAX)`, only dealing with
* non-negative and finite t. */
kernel_assert(t >= 0.0f && isfinite_safe(t));
const uint32_t bits = (t == 0.0f) ? 1 : __float_as_uint(t) + 1;