From c03650073e60194500e13dc996168c4930970f5b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 16 Feb 2021 21:15:45 +1100 Subject: Cleanup: spelling --- intern/cycles/kernel/closure/bsdf_microfacet.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/cycles/kernel/closure') diff --git a/intern/cycles/kernel/closure/bsdf_microfacet.h b/intern/cycles/kernel/closure/bsdf_microfacet.h index 32639ba24ec..aed4b849aca 100644 --- a/intern/cycles/kernel/closure/bsdf_microfacet.h +++ b/intern/cycles/kernel/closure/bsdf_microfacet.h @@ -487,11 +487,11 @@ ccl_device float3 bsdf_microfacet_ggx_eval_reflect(const ShaderClosure *sc, float3 out = F * G * common; /* eq. 2 in distribution of visible normals sampling - * pm = Dw = G1o * dot(m, I) * D / dot(N, I); */ + * `pm = Dw = G1o * dot(m, I) * D / dot(N, I);` */ /* eq. 38 - but see also: * eq. 17 in http://www.graphics.cornell.edu/~bjw/wardnotes.pdf - * pdf = pm * 0.25 / dot(m, I); */ + * `pdf = pm * 0.25 / dot(m, I);` */ *pdf = G1o * common; return out; -- cgit v1.2.3