From 76471dbd5e2efbbc3a4d4b3a1a26fe0649f31cff Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Nov 2021 09:10:05 +1100 Subject: Cleanup: capitalize NOTE tag --- intern/cycles/util/math_matrix.h | 2 +- intern/cycles/util/transform.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/cycles/util') diff --git a/intern/cycles/util/math_matrix.h b/intern/cycles/util/math_matrix.h index c1be71517e3..846b028a513 100644 --- a/intern/cycles/util/math_matrix.h +++ b/intern/cycles/util/math_matrix.h @@ -116,7 +116,7 @@ ccl_device_inline void math_vec3_add_strided( } /* Elementary matrix operations. - * Note: TriMatrix refers to a square matrix that is symmetric, + * NOTE: TriMatrix refers to a square matrix that is symmetric, * and therefore its upper-triangular part isn't stored. */ ccl_device_inline void math_trimatrix_add_diagonal(ccl_global float *A, diff --git a/intern/cycles/util/transform.h b/intern/cycles/util/transform.h index 80cd37d35e2..84827cf6ba5 100644 --- a/intern/cycles/util/transform.h +++ b/intern/cycles/util/transform.h @@ -370,7 +370,7 @@ ccl_device_inline float4 quat_interpolate(float4 q1, float4 q2, float t) #if defined(__KERNEL_GPU_RAYTRACING__) return normalize((1.0f - t) * q1 + t * q2); #else /* defined(__KERNEL_GPU_RAYTRACING__) */ - /* note: this does not ensure rotation around shortest angle, q1 and q2 + /* NOTE: this does not ensure rotation around shortest angle, q1 and q2 * are assumed to be matched already in transform_motion_decompose */ float costheta = dot(q1, q2); -- cgit v1.2.3